diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-08-29 17:03:26 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-09-10 09:01:23 +0200 |
commit | af3cb9c772b07860882d24471bed1832b1fcd328 (patch) | |
tree | 5f3ce744c55e3e288cb27c4eb96ef22d27bab6a2 /apps/workflowengine/src/components | |
parent | bd281daa47152dc09c0f6c2bbc9e5a308d1748bd (diff) | |
download | nextcloud-server-af3cb9c772b07860882d24471bed1832b1fcd328.tar.gz nextcloud-server-af3cb9c772b07860882d24471bed1832b1fcd328.zip |
Use trigger hint
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src/components')
-rw-r--r-- | apps/workflowengine/src/components/Event.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/src/components/Event.vue b/apps/workflowengine/src/components/Event.vue index d05aeb0a07e..2621b8ca3ba 100644 --- a/apps/workflowengine/src/components/Event.vue +++ b/apps/workflowengine/src/components/Event.vue @@ -2,7 +2,7 @@ <div> <div v-if="operation.isComplex && operation.fixedEntity !== ''"> <img class="option__icon" :src="entity.icon"> - <span class="option__title option__title_single">{{ entity.name }}</span> + <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" |