mirror of https://github.com/buster-so/buster.git
metric interfaces in correct place
This commit is contained in:
parent
22337e17d1
commit
17c57f6d75
|
@ -0,0 +1 @@
|
||||||
|
export type * from './metric';
|
|
@ -3,7 +3,7 @@ import type { BusterDashboardAsset } from './chatAssetDashboardInterfaces';
|
||||||
import type { BusterDatasetAsset } from './chatAssetDatasetInterfaces';
|
import type { BusterDatasetAsset } from './chatAssetDatasetInterfaces';
|
||||||
import type { BusterTermAsset } from './chatAssetTermInterfaces';
|
import type { BusterTermAsset } from './chatAssetTermInterfaces';
|
||||||
import type { BusterValueAsset } from './chatAssetValueInterfaces';
|
import type { BusterValueAsset } from './chatAssetValueInterfaces';
|
||||||
import { BusterMetricAsset } from '@/api/buster_rest/metric';
|
import type { BusterMetricAsset } from '@/api/asset_interfaces';
|
||||||
export * from '../../share/shareInterfaces';
|
export * from '../../share/shareInterfaces';
|
||||||
|
|
||||||
export type BusterChatAsset =
|
export type BusterChatAsset =
|
||||||
|
|
|
@ -5,7 +5,7 @@ import React from 'react';
|
||||||
import { SaveToDashboardDropdown } from '../Dropdowns/SaveToDashboardDropdown';
|
import { SaveToDashboardDropdown } from '../Dropdowns/SaveToDashboardDropdown';
|
||||||
import { Button } from 'antd';
|
import { Button } from 'antd';
|
||||||
import { AppMaterialIcons } from '@/components/icons';
|
import { AppMaterialIcons } from '@/components/icons';
|
||||||
import { BusterMetricAsset } from '@/api/buster_rest/metric';
|
import type { BusterMetricAsset } from '@/api/asset_interfaces';
|
||||||
|
|
||||||
const EMPTY_SELECTED_DASHBOARDS: BusterMetricAsset['dashboards'] = [];
|
const EMPTY_SELECTED_DASHBOARDS: BusterMetricAsset['dashboards'] = [];
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { Button } from 'antd';
|
||||||
import { AppDropdownSelect } from '@/components/dropdown';
|
import { AppDropdownSelect } from '@/components/dropdown';
|
||||||
import { AppTooltip } from '@/components/tooltip';
|
import { AppTooltip } from '@/components/tooltip';
|
||||||
import { AppMaterialIcons } from '@/components/icons';
|
import { AppMaterialIcons } from '@/components/icons';
|
||||||
import type { BusterMetricAsset } from '@/api/buster_rest/metric';
|
import type { BusterMetricAsset } from '@/api/asset_interfaces';
|
||||||
import type { BusterDashboardListItem } from '@/api/buster_rest/dashboards';
|
import type { BusterDashboardListItem } from '@/api/buster_rest/dashboards';
|
||||||
|
|
||||||
export const SaveToDashboardDropdown: React.FC<{
|
export const SaveToDashboardDropdown: React.FC<{
|
||||||
|
|
Loading…
Reference in New Issue