feat: 別名タグをサジェストに展開(#28) (#244)

#28 件数 0 件除外をついでに対応(フロントのみ;バックエンドは後で対応)

#28

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #244
This commit was merged in pull request #244.
This commit is contained in:
2026-01-29 07:32:13 +09:00
parent 200d457d22
commit 01646ebcb7
5 changed files with 21 additions and 11 deletions
+7 -6
View File
@@ -44,12 +44,13 @@ export type SubMenuItem =
visible?: boolean }
export type Tag = {
id: number
name: string
category: Category
postCount: number
hasWiki: boolean
children?: Tag[] }
id: number
name: string
category: Category
postCount: number
hasWiki: boolean
children?: Tag[]
matchedAlias?: string | null }
export type User = {
id: number