Skip to content

Commit bf77603

Browse files
committed
tiny fix
1 parent 0cf5294 commit bf77603

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/repl/src/lib/Output/CompilerOptions.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}}
2222
/>
2323
<label for={generate}><span class="string">"{generate}"</span></label>
24-
{/each}
24+
{/each},
2525
</div>
2626

2727
<!-- svelte-ignore a11y_label_has_associated_control (TODO this warning should probably be disabled if there's a component)-->
@@ -33,7 +33,7 @@
3333
workspace.update_compiler_options({ dev });
3434
}}
3535
/>
36-
<span class="boolean">{workspace.compiler_options.dev}</span>,
36+
<span class="boolean">{workspace.compiler_options.dev}</span>
3737
</label>
3838
});
3939
</div>
@@ -57,7 +57,7 @@
5757
5858
.key {
5959
display: inline-block;
60-
width: 9em;
60+
width: 6em;
6161
}
6262
6363
.string {

0 commit comments

Comments
 (0)