Skip to content

Commit 893e20e

Browse files
committed
fix: html default checked ad min height
1 parent 6962178 commit 893e20e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<input
4545
id={templating_mode}
4646
type="radio"
47-
checked={workspace.compiler_options.fragments === templating_mode}
47+
checked={(workspace.compiler_options.fragments ?? 'html') === templating_mode}
4848
value={templating_mode}
4949
onchange={() => {
5050
workspace.update_compiler_options({ fragments: templating_mode });

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
{#if embedded}
216216
<Editor workspace={js_workspace} />
217217
{:else}
218-
<PaneWithPanel min="-18rem" pos="-18rem" panel="Compiler options">
218+
<PaneWithPanel min="-27rem" pos="-27rem" panel="Compiler options">
219219
{#snippet main()}
220220
<Editor workspace={js_workspace} />
221221
{/snippet}

0 commit comments

Comments
 (0)