Chore: fix some types (#58662)

chore: fix some types
This commit is contained in:
Ashley Harrison
2022-11-11 16:29:49 +00:00
committed by GitHub
parent 860e25df3c
commit 500cf16142
26 changed files with 61 additions and 117 deletions

View File

@@ -5,7 +5,7 @@ import { CollapsableSection, TagsInput, Select, Field, Input, Checkbox, Button,
import { DashboardLink, DashboardModel } from '../../state/DashboardModel';
export const newLink = {
export const newLink: DashboardLink = {
icon: 'external link',
title: 'New link',
tooltip: '',
@@ -16,7 +16,7 @@ export const newLink = {
targetBlank: false,
keepTime: false,
includeVars: false,
} as DashboardLink;
};
const linkTypeOptions = [
{ value: 'dashboards', label: 'Dashboards' },