Skip to content

Commit

Permalink
Bugfix reactive expression called before outputFormats defined
Browse files Browse the repository at this point in the history
  • Loading branch information
cartermak committed Nov 14, 2024
1 parent f7862d2 commit 210d9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/sequencing/SequenceEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
}
}
$: showOutputs = !isInVmlMode && !!outputFormats.length;
$: showOutputs = !isInVmlMode && !!outputFormats?.length;
$: {
if (showOutputs) {
editorHeights = toggleSeqJsonPreview ? '1fr 3px 1fr' : '1.88fr 3px 80px';
Expand Down

0 comments on commit 210d9c8

Please sign in to comment.