Fix protocol steps counter in import [SCI-11912]

This commit is contained in:
Anton 2025-05-15 14:28:02 +02:00
parent f2e7123245
commit 81e5294e2a

View file

@ -79,6 +79,11 @@ export default {
selectedSteps: null selectedSteps: null
}; };
}, },
watch: {
selectedProtocol() {
this.selectedSteps = null;
}
},
computed: { computed: {
validObject() { validObject() {
return this.selectedProtocol && this.selectedSteps?.length; return this.selectedProtocol && this.selectedSteps?.length;