File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ const DatasetInfo: FunctionComponent<DatasetInfoProps> = (props) => {
116116 < TableCell align = 'left' >
117117 < Chip
118118 size = { 'small' }
119- label = { < MqText font = { 'mono' } > { field . type } </ MqText > }
119+ label = { < MqText font = { 'mono' } small > { field . type || 'N/A' } </ MqText > }
120120 variant = { 'outlined' }
121121 />
122122 </ TableCell >
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0
33
44import { JobOrDataset , LineageNode } from './lineage'
5+ import { Nullable } from "./util/Nullable" ;
56
67export interface Tag {
78 name : string
@@ -150,7 +151,7 @@ export type DatasetType = 'DB_TABLE' | 'STREAM'
150151
151152export interface Field {
152153 name : string
153- type : string
154+ type : Nullable < string >
154155 tags : string [ ]
155156 description : string
156157}
You can’t perform that action at this time.
0 commit comments