Fix tagmove

This commit is contained in:
Henrik Giesel 2021-06-27 02:15:02 +02:00
parent 36f455c0ee
commit bfeb419ba6
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@ Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
--> -->
<script lang="typescript"> <script lang="typescript">
import { tick } from "svelte";
import { isApplePlatform } from "lib/platform"; import { isApplePlatform } from "lib/platform";
import StickyBottom from "components/StickyBottom.svelte"; import StickyBottom from "components/StickyBottom.svelte";
import AddTagBadge from "./AddTagBadge.svelte"; import AddTagBadge from "./AddTagBadge.svelte";

View file

@ -15,7 +15,7 @@ export function normalizeTagname(tagname: string): string {
} }
} }
interface Tag { export interface Tag {
id: string; id: string;
name: string; name: string;
blink: boolean; blink: boolean;