mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Fix tagmove
This commit is contained in:
parent
36f455c0ee
commit
bfeb419ba6
2 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ Copyright: Ankitects Pty Ltd and contributors
|
|||
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||
-->
|
||||
<script lang="typescript">
|
||||
import { tick } from "svelte";
|
||||
import { isApplePlatform } from "lib/platform";
|
||||
import StickyBottom from "components/StickyBottom.svelte";
|
||||
import AddTagBadge from "./AddTagBadge.svelte";
|
||||
|
|
|
@ -15,7 +15,7 @@ export function normalizeTagname(tagname: string): string {
|
|||
}
|
||||
}
|
||||
|
||||
interface Tag {
|
||||
export interface Tag {
|
||||
id: string;
|
||||
name: string;
|
||||
blink: boolean;
|
||||
|
|
Loading…
Reference in a new issue