feat(provenance): drop artist tag-kind affordances from the UI

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-18 21:36:54 -04:00
parent 592c665701
commit 9d61f0da44
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ const store = useTagStore()
const errorMsg = ref(null)
const KIND_ICONS = {
general: 'mdi-tag', artist: 'mdi-palette', character: 'mdi-account-circle',
general: 'mdi-tag', character: 'mdi-account-circle',
fandom: 'mdi-book-open-page-variant', series: 'mdi-bookshelf',
meta: 'mdi-cog-outline', rating: 'mdi-shield-check-outline'
}
+4 -3
View File
@@ -51,10 +51,11 @@ import { useTagDirectoryStore } from '../stores/tagDirectory.js'
import TagCard from '../components/discovery/TagCard.vue'
import MergeConfirmDialog from '../components/discovery/MergeConfirmDialog.vue'
// Must stay a subset of the backend TagKind enum (artist, character,
// fandom, general, series, archive, post, meta, rating). 'fandom' is this
// Must stay a subset of the backend TagKind enum (character, fandom,
// general, series, archive, post, meta, rating). 'fandom' is this
// model's copyright/franchise concept (characters link via fandom_id).
const KINDS = ['artist', 'character', 'fandom', 'general', 'series', 'meta']
// 'artist' retired in FC-2d-vii-c — artists are the Artist row, not a tag.
const KINDS = ['character', 'fandom', 'general', 'series', 'meta']
const store = useTagDirectoryStore()
const router = useRouter()