Skip to content

Commit

Permalink
chore: fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Oct 27, 2023
1 parent 9a106b6 commit 1bf6045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/modals/SortModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
class="jse-primary"
on:click={handleSort}
use:focus
disabled={jsonIsArray && (properties && properties?.length > 1) ? !selectedProperty : false}
disabled={jsonIsArray && properties && properties?.length > 1 ? !selectedProperty : false}
>
Sort
</button>
Expand Down

0 comments on commit 1bf6045

Please sign in to comment.