Skip to content

Commit

Permalink
Fix watcher to observe also finished status
Browse files Browse the repository at this point in the history
  • Loading branch information
lehecht committed May 21, 2024
1 parent 097ba6a commit de16896
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/resources/assets/js/createContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,6 @@ export default {
this.finishIncomplete = this.failedFiles.length > 0;
this.finished = !this.finishIncomplete;
this.editable = this.finishIncomplete;
});
},
getFailedFiles() {
Expand Down Expand Up @@ -589,7 +587,7 @@ export default {
},
watch: {
loading(){
this.editable = !this.loading;
this.editable = !this.loading && !this.finished;
},
},
created() {
Expand Down

0 comments on commit de16896

Please sign in to comment.