Skip to content

Commit

Permalink
minor fix(frontend)
Browse files Browse the repository at this point in the history
  • Loading branch information
bekossy committed Dec 9, 2024
1 parent a46b48d commit 998e974
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const SelectVariantSection = ({
render: (_, record) => {
return record.parameters &&
Object.keys(record.parameters).length &&
record.hasOwnProperty("model")
record.parameters.hasOwnProperty("model")
? Object.values(
filterVariantParameters({record: record.parameters, key: "model"}),
).map((value, index) => (value ? <Tag key={index}>{value}</Tag> : "-"))
Expand Down

0 comments on commit 998e974

Please sign in to comment.