fix
This commit is contained in:
parent
548496e6ba
commit
c8777f5abb
|
@ -93,8 +93,8 @@ const {
|
||||||
model: chartSrc,
|
model: chartSrc,
|
||||||
def: chartSrcDef,
|
def: chartSrcDef,
|
||||||
} = useMkSelect({
|
} = useMkSelect({
|
||||||
items: computed<MkSelectItem[]>(() => {
|
items: computed<MkSelectItem<ChartSrc>[]>(() => {
|
||||||
const items: MkSelectItem[] = [];
|
const items: MkSelectItem<ChartSrc>[] = [];
|
||||||
|
|
||||||
if (shouldShowFederation.value) {
|
if (shouldShowFederation.value) {
|
||||||
items.push({
|
items.push({
|
||||||
|
@ -117,7 +117,7 @@ const {
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
const notesItems: ItemOption[] = [
|
const notesItems: ItemOption<ChartSrc>[] = [
|
||||||
{ value: 'notes', label: i18n.ts._charts.notesIncDec },
|
{ value: 'notes', label: i18n.ts._charts.notesIncDec },
|
||||||
{ value: 'local-notes', label: i18n.ts._charts.localNotesIncDec },
|
{ value: 'local-notes', label: i18n.ts._charts.localNotesIncDec },
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue