Skip to content

Commit

Permalink
feat: new image parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
agatha197 committed Nov 4, 2024
1 parent c812a5e commit 0113614
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions react/src/components/ImageList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,9 @@ const ImageList: React.FC<{ style?: React.CSSProperties }> = ({ style }) => {
render: (text: string, row: EnvironmentImage) =>
row?.tag ? (
<ConstraintTags
tag={row.tag}
labels={row?.labels as { key: string; value: string }[]}
tag={row?.tag}
labels={row?.labels as Array<{ key: string; value: string }>}
highlightKeyword={imageSearch}
/>
) : null,
},
Expand Down

0 comments on commit 0113614

Please sign in to comment.