1<script>
2  import { _ } from "../i18n";
3
4  /** @type {Record<string, unknown>} */
5  export let meta;
6
7  function addMetadata() {
8    meta[""] = "";
9    meta = meta;
10  }
11</script>
12
13<button
14  class="muted round"
15  type="button"
16  on:click={addMetadata}
17  tabindex={-1}
18  title={_("Add metadata")}> m </button>
19