Skip to content

Commit

Permalink
fix: Fixes issue preventing encounter builder filters to open if an O…
Browse files Browse the repository at this point in the history
…ptions filter was present
  • Loading branch information
valentine195 committed Apr 28, 2024
1 parent c4f0a73 commit d2a5c03
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 33 deletions.
35 changes: 5 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"fast-copy": "^3.0.1",
"obsidian": "^1.4.11",
"obsidian-utilities": "^1.1.3",
"svelte": "^4.2.1",
"svelte": "^4.2.12",
"svelte-dnd-action": "^0.9.29",
"svelte-loading-spinners": "^0.3.4",
"svelte-multiselect": "^10.1.0",
"svelte-multiselect": "^10.3.0",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
Expand Down
2 changes: 1 addition & 1 deletion src/builder/view/filters/customs/Options.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<div class="multiselect-container">
<Multiselect
options={filter.options}
options={filter.options.flat()}
bind:selected={$filter}
outerDivClass="multiselect-dropdown"
placeholder={filter.text}
Expand Down

0 comments on commit d2a5c03

Please sign in to comment.