A focused Docker Compose management web application.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: editor unfocus on change

Brooke d7dddecb 09d3d04f

+2 -1
+2 -1
packages/panel/src/lib/component/ComposeEditor.svelte
··· 20 20 21 21 let { content = $bindable() }: { content: string } = $props(); 22 22 23 + let initial = $state.snapshot(content); 23 24 let focused = $state(false); 24 25 25 26 const enterHandler = (view: view.EditorView) => { ··· 131 132 } 132 133 }), 133 134 ], 134 - doc: content, 135 + doc: initial, 135 136 parent, 136 137 }); 137 138