From 45c7e3b4ade5eb17c1f38d4444be00d44d306eea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Thu, 24 Nov 2022 11:16:39 +0100 Subject: [PATCH] Add starting stepID information to list of workflows in automation tab --- .../PageBlocks/Shared/AutomationTab.vue | 23 ++++++++++++------- .../Shared/AutomationTabButtonEditor.vue | 11 +++++---- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/client/web/compose/src/components/PageBlocks/Shared/AutomationTab.vue b/client/web/compose/src/components/PageBlocks/Shared/AutomationTab.vue index 915babb6a..9cdb30a1a 100644 --- a/client/web/compose/src/components/PageBlocks/Shared/AutomationTab.vue +++ b/client/web/compose/src/components/PageBlocks/Shared/AutomationTab.vue @@ -102,17 +102,24 @@ {{ b.script }}

- {{ b.description }} + + {{ b.description }} + + + + {{ $t('automation.noDescription') }} +

-

- {{ $t('automation.noDescription') }} -

+ {{ $t('automation.stepID', { stepID: b.stepID }) }} + diff --git a/client/web/compose/src/components/PageBlocks/Shared/AutomationTabButtonEditor.vue b/client/web/compose/src/components/PageBlocks/Shared/AutomationTabButtonEditor.vue index 4ca2da954..58725dcaf 100644 --- a/client/web/compose/src/components/PageBlocks/Shared/AutomationTabButtonEditor.vue +++ b/client/web/compose/src/components/PageBlocks/Shared/AutomationTabButtonEditor.vue @@ -37,9 +37,6 @@
{{ workflow.meta.name || $t('automation.noLabel') }}
- - {{ $t('automation.stepID', { stepID: trigger.stepID}) }} - {{ workflow.meta.description || $t('automation.noDescription') }}

{{ script.description || $t('automation.noDescription') }}

+ + {{ $t('automation.stepID', { stepID: trigger.stepID }) }} + +