Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 30415dc

Browse files
committed
funcionando filtro con la configuración
1 parent 6f9f9ad commit 30415dc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,4 @@ main.js
1313

1414
# obsidian
1515
data.json
16-
.DS_Store
17-
18-
# dist exception
19-
!dist/*
16+
.DS_Store

src/components/Table.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,9 +351,12 @@ export function Table(initialState: TableDataType){
351351
</div>
352352
</div>
353353
</div>
354-
<pre>
355-
<code>{JSON.stringify(state, null, 2)}</code>
356-
</pre>
354+
{initialState.view.diskConfig.yaml.config.enable_show_state
355+
&& (
356+
<pre>
357+
<code>{JSON.stringify(state, null, 2)}</code>
358+
</pre>
359+
)}
357360
</div>
358361
</>
359362
);

0 commit comments

Comments
 (0)