Skip to content

Commit

Permalink
fix: fix model table's instance icon (#196)
Browse files Browse the repository at this point in the history
Because

- #195 

This commit

- Fix model table's instance icon
- close #195
  • Loading branch information
EiffelFly committed Aug 1, 2022
1 parent 722fd13 commit e521d97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/ui/TableCells/InstanceCell/InstanceCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { FC, ReactNode } from "react";
import cn from "clsx";
import {
getTailwindClassNumber,
ModelInstanceIcon,
PipelineIcon,
} from "@instill-ai/design-system";
import InstanceInnerList from "./InstanceInnerList";
Expand Down Expand Up @@ -38,7 +39,7 @@ const InstanceCell: FC<InstanceCellProps> = ({
switch (type) {
case "model":
icon = (
<PipelineIcon
<ModelInstanceIcon
width={iconWidth}
height={iconHeight}
position={iconPosition}
Expand Down

0 comments on commit e521d97

Please sign in to comment.