#14 - non-existing notes are indexed

This commit is contained in:
Simon Cambier
2022-05-17 22:17:43 +02:00
parent 8c99450d3b
commit 5c2033cd06
8 changed files with 124 additions and 32 deletions

View File

@@ -1,8 +1,9 @@
<script lang="ts">
import { createEventDispatcher } from "svelte"
import GlyphAddNote from "./GlyphAddNote.svelte"
export let id: string
export let selected = false
export let glyph = false
</script>
<div
@@ -13,5 +14,8 @@ export let selected = false
on:click
on:auxclick
>
{#if glyph}
<GlyphAddNote />
{/if}
<slot />
</div>