diff options
Diffstat (limited to 'apps/workflowengine/src/components/Event.vue')
-rw-r--r-- | apps/workflowengine/src/components/Event.vue | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/apps/workflowengine/src/components/Event.vue b/apps/workflowengine/src/components/Event.vue index ea153758c74..a06835f5f82 100644 --- a/apps/workflowengine/src/components/Event.vue +++ b/apps/workflowengine/src/components/Event.vue @@ -4,9 +4,14 @@ <img class="option__icon" :src="entity.icon"> <span class="option__title option__title_single">{{ operation.triggerHint }}</span> </div> - <Multiselect v-else :value="currentEvent" :options="allEvents" - label="eventName" track-by="id" :allow-empty="false" - :disabled="allEvents.length <= 1" @input="updateEvent"> + <Multiselect v-else + :value="currentEvent" + :options="allEvents" + label="eventName" + track-by="id" + :allow-empty="false" + :disabled="allEvents.length <= 1" + @input="updateEvent"> <template slot="singleLabel" slot-scope="props"> <img class="option__icon" :src="props.option.entity.icon"> <span class="option__title option__title_single">{{ props.option.displayName }}</span> |