Skip to content

Commit

Permalink
Fix [Batch Run] Blank project screen after setting model target path (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan7empest committed Feb 7, 2024
1 parent 070d3a9 commit 82f0233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"final-form-arrays": "^3.0.2",
"fs-extra": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"iguazio.dashboard-react-controls": "1.8.4",
"iguazio.dashboard-react-controls": "1.8.5",
"is-wsl": "^1.1.0",
"js-base64": "^2.5.2",
"js-yaml": "^3.13.1",
Expand Down
4 changes: 2 additions & 2 deletions src/common/TargetPath/targetPath.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ export const generateArtifactsReferencesList = artifacts => {
const [nextRefIter, nextRefTree] = nextRef.id.split('@')

if (prevRefTree === nextRefTree) {
return prevRefIter.localeCompare(nextRefIter)
return prevRefIter && prevRefIter.localeCompare(nextRefIter)
} else {
return prevRefTree.localeCompare(nextRefTree)
return prevRefTree && prevRefTree.localeCompare(nextRefTree)
}
})

Expand Down

0 comments on commit 82f0233

Please sign in to comment.