We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9979186 commit 1eb9203Copy full SHA for 1eb9203
models/Tab.ts
@@ -1,6 +1,7 @@
1
import { uid } from 'quasar'
2
import { STRIP_CHARS_IN_USER_INPUT } from 'src/boot/constants'
3
import { TabReference, TabReferenceType } from 'src/content/models/TabReference'
4
+import { TagInfo } from 'src/core/models/TagInfo'
5
import { useUtils } from 'src/core/services/Utils'
6
import { ExcalidrawStorage } from 'src/tabsets/actionHandling/model/ExcalidrawStorage'
7
import { Page } from 'src/tabsets/models/cms/backend'
@@ -127,6 +128,7 @@ export class Tab {
127
128
longDescription: string | undefined
129
keywords: string
130
tags: string[] // Set<string> got issues in indexeddb
131
+ tagsInfo: TagInfo[] = []
132
image: string
133
date: string
134
lastModified: string
0 commit comments