aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/src/components/Check.vue
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-09-10 09:44:20 +0200
committerJulius Härtl <jus@bitgrid.net>2019-09-10 09:44:20 +0200
commit7683208dfa4cf5f0ff196ee0cabdacf8046592eb (patch)
treee4923006ebe0a67e7e512886fb3322c5a2570f92 /apps/workflowengine/src/components/Check.vue
parent9e0078824e1303c78575c4287ce3f228659d8ab5 (diff)
downloadnextcloud-server-7683208dfa4cf5f0ff196ee0cabdacf8046592eb.tar.gz
nextcloud-server-7683208dfa4cf5f0ff196ee0cabdacf8046592eb.zip
Workflow vue cleanup
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src/components/Check.vue')
-rw-r--r--apps/workflowengine/src/components/Check.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/workflowengine/src/components/Check.vue b/apps/workflowengine/src/components/Check.vue
index 905c2c989b1..06667b1a7ee 100644
--- a/apps/workflowengine/src/components/Check.vue
+++ b/apps/workflowengine/src/components/Check.vue
@@ -14,8 +14,8 @@
<input v-else v-model="check.value" type="text"
:class="{ invalid: !valid }"
:disabled="!currentOption" :placeholder="valuePlaceholder" @input="updateCheck">
- <Actions>
- <ActionButton v-if="deleteVisible || !currentOption" icon="icon-delete" @click="$emit('remove')" />
+ <Actions v-if="deleteVisible || !currentOption">
+ <ActionButton icon="icon-delete" @click="$emit('remove')" />
</Actions>
</div>
</template>