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 revert

Brooke 091f849a a64691e9

+7
+7
packages/panel/src/lib/component/ComposeEditor.svelte
··· 138 138 ], 139 139 }); 140 140 141 + $effect(() => { 142 + if (content !== editor.state.doc.toString()) 143 + editor.dispatch({ 144 + changes: { from: 0, to: editor.state.doc.length, insert: content }, 145 + }); 146 + }); 147 + 141 148 return () => { 142 149 editor.destroy(); 143 150 };