mirror of
https://github.com/liufree/obsidian-querydash.git
synced 2026-07-22 05:41:49 +00:00
feat: task
This commit is contained in:
parent
98ebde52a0
commit
bfc9beb069
2 changed files with 1 additions and 3 deletions
|
|
@ -182,7 +182,6 @@ const columns: ProColumns<DataSourceType>[] = [
|
|||
];
|
||||
|
||||
export default () => {
|
||||
const actionRef = useRef<ActionType>();
|
||||
const [editableKeys, setEditableRowKeys] = useState<React.Key[]>([]);
|
||||
const [dataSource, setDataSource] = useState<readonly DataSourceType[]>([]);
|
||||
const [form] = Form.useForm();
|
||||
|
|
@ -193,7 +192,6 @@ export default () => {
|
|||
scroll={{
|
||||
x: 960,
|
||||
}}
|
||||
actionRef={actionRef}
|
||||
headerTitle="可编辑表格"
|
||||
maxLength={5}
|
||||
// 关闭默认的新建按钮
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@ const KanbanView: React.FC<ViewProps> = ({app, source}) => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<EditableTable></EditableTable>
|
||||
{/*<EditableTable></EditableTable>*/}
|
||||
|
||||
<ProCard ghost gutter={8}>
|
||||
{columns.map((column) => (
|
||||
|
|
|
|||
Loading…
Reference in a new issue