File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
webview/src/experiments/util Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
1212 Column ,
1313 ValueWithChanges
1414} from 'dvc/src/experiments/webview/contract'
15+ import { Value } from 'dvc/src/cli/reader'
1516import { formatFloat } from './numberFormatting'
1617import Tooltip , {
1718 CELL_TOOLTIP_DELAY
@@ -20,7 +21,7 @@ import styles from '../components/table/styles.module.scss'
2021import { CopyButton } from '../../shared/components/copyButton/CopyButton'
2122import { OverflowHoverTooltip } from '../components/overflowHoverTooltip/OverflowHoverTooltip'
2223
23- export type CellValue = undefined | string | number | ValueWithChanges
24+ export type CellValue = Value | ValueWithChanges
2425
2526export const isValueWithChanges = ( raw : CellValue ) : raw is ValueWithChanges =>
2627 typeof ( raw as ValueWithChanges ) ?. changes === 'boolean'
You can’t perform that action at this time.
0 commit comments