Skip to content

Commit

Permalink
fix: Property block now uses fallback correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Jan 4, 2022
1 parent e6da81c commit 036c262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/ui/PropertyLine.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}
}
if (!item.conditioned && !`${property}`.length) {
property = "-";
property = item.fallback ?? "-";
}
</script>

Expand Down

0 comments on commit 036c262

Please sign in to comment.