Skip to content
Snippets Groups Projects
Commit 02adc313 authored by Erwan Rouchet's avatar Erwan Rouchet Committed by Bastien Abadie
Browse files

Fix unavailable ModelVersion warning in template details

parent 09d3f1e8
No related branches found
No related tags found
1 merge request!1493Fix unavailable ModelVersion warning in template details
......@@ -75,7 +75,7 @@ export default {
return this.currentProcessWorkerRuns.some(run => run.worker_version.state !== 'available')
},
hasUnavailableModelVersions () {
return this.currentProcessWorkerRuns.some(run => run.model_version?.state !== 'available')
return this.currentProcessWorkerRuns.some(run => run.model_version && run.model_version.state !== 'available')
}
},
methods: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment