Add: add only main tag in tab

This commit is contained in:
2024-11-27 12:16:55 +01:00
parent 4027dc0126
commit 8fdb5e16f2
2 changed files with 5 additions and 3 deletions

View File

@@ -52,6 +52,7 @@ export interface Tag {
label: string
icon: string
color: BadgeColor
sort?: boolean
}
export const TAGS: Array<Tag> = [
@@ -59,11 +60,13 @@ export const TAGS: Array<Tag> = [
label: 'Article',
icon: 'i-ph-pencil-line-duotone',
color: 'red',
sort: true,
},
{
label: 'Project',
icon: 'i-ph-briefcase-duotone',
color: 'blue',
sort: true,
},
{
label: 'R',