Skip to content

Commit

Permalink
Update packages/viewer/src/components/Search/Results/Found.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz authored Oct 10, 2024
1 parent 1487f95 commit 0c5bde6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/viewer/src/components/Search/Results/Found.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
export let formula: F.Formula<Property> | undefined
export let results: Space[]
const spaces = (r: Space[], t: string | undefined) => {
if (t === undefined || t == '') {
if (t === undefined || t === '') {
return r.sort((a, b) => a.id - b.id)
}
return r
Expand Down

0 comments on commit 0c5bde6

Please sign in to comment.