whitespace

This commit is contained in:
Philipp Kühn 2021-03-08 13:25:02 +01:00
parent dae9eefdc5
commit 9f23ff20d6

View File

@ -40,6 +40,7 @@ Editor.svelte
editor.destroy()
})
</script>
{#if editor}
<button on:click={() => editor.chain().focus().toggleBold().run()} class:active={editor.isActive('bold')}>
Bold
@ -51,5 +52,6 @@ Editor.svelte
Strike
</button>
{/if}
<div bind:this={element} />
```