Skip to content

Commit

Permalink
Fix [Model endpoints] incorrect version definition
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-prokopchuk committed Jan 19, 2024
1 parent 6cd7522 commit 9f10f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/createArtifactsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ export const createModelEndpointsRowData = (artifact, project) => {
id: `version.${artifact.ui.identifierUnique}`,
headerId: 'version',
headerLabel: 'Version',
value: artifact?.status?.children ? 'Router' : tag,
value: artifact?.status?.children?.length > 0 ? 'Router' : tag,
className: 'table-cell-small'
},
{
Expand Down

0 comments on commit 9f10f37

Please sign in to comment.