Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/workflowengine/src/components/Check.vue')
-rw-r--r--apps/workflowengine/src/components/Check.vue5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/workflowengine/src/components/Check.vue b/apps/workflowengine/src/components/Check.vue
index 10828c1dd8a..a553e1cf2ce 100644
--- a/apps/workflowengine/src/components/Check.vue
+++ b/apps/workflowengine/src/components/Check.vue
@@ -124,9 +124,8 @@ export default {
this.check.class = this.currentOption.class
this.check.operator = this.currentOperator.operator
- if (!this.validate()) {
- this.check.invalid = !this.valid
- }
+ this.check.invalid = !this.validate()
+
this.$emit('update', this.check)
}
}