Skip to content

Commit 5a446e4

Browse files
committed
temp [ci skip]
1 parent 348b524 commit 5a446e4

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

vscode/react/src/components/graph/context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export default function LineageFlowProvider({
132132
showColumns?: boolean
133133
showConnected?: boolean
134134
showControls?: boolean
135-
models: Record<string, Model[]>
135+
models: Record<string, Model>
136136
}): JSX.Element {
137137
const [lineage, setLineage] = useState<Record<string, Lineage>>({})
138138
const [unknownModels, setUnknownModels] = useState(new Set<string>())

vscode/react/src/components/listbox/ListboxShow.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export default function ListboxShow({
4747
/>
4848
</Listbox.Button>
4949
<Transition
50+
// @ts-ignore
5051
as={Fragment}
5152
leave="transition ease-in duration-100"
5253
leaveFrom="opacity-100"

vscode/react/src/domain/file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
isStringEmpty,
88
isStringNotEmpty,
99
toUniqueName,
10-
} from '@utils/index'
10+
} from '@/utils/index'
1111

1212
export interface FormatFileStatus {
1313
path: string

vscode/react/src/domain/initial.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class ModelInitial<T extends object = any> {
3333
return this._initial
3434
}
3535

36-
get id(): ID {
36+
get id(): string {
3737
return this.initial.id
3838
}
3939
}

0 commit comments

Comments
 (0)