Skip to content
Snippets Groups Projects
Commit 10fbceb2 authored by ml bonhomme's avatar ml bonhomme :bee:
Browse files

Do not compute configuration name from worker configurations store when removing a configuration

parent c0a63a42
No related branches found
No related tags found
1 merge request!1550Do not compute configuration name from worker configurations store when removing a configuration
......@@ -342,8 +342,10 @@ export default {
* potential race condition as updateWorkerRun causes workerId to be re-computed when a
* configuration is first saved for a newly added worker run, which triggers
* retrieveConfigurations again through a watcher.
* When removing a configuration, selectedConfigurationId is null.
*/
const configurationName = this.workerConfigurations[this.workerId][this.selectedConfigurationId].name
let configurationName = ''
if (this.selectedConfigurationId) configurationName = this.workerConfigurations[this.workerId][this.selectedConfigurationId].name
try {
await this.updateWorkerRun({
processId: this.processId,
......
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