From 6ddf16128b4ab47db716eeab89f7526558073f56 Mon Sep 17 00:00:00 2001 From: romainminaud Date: Fri, 2 Jun 2023 12:17:49 +0200 Subject: [PATCH] feat(editor): Make WF name a link on /executions (#6354) * make wf name a link in exec view * link color * make wf name a link in exec view * link color --------- Co-authored-by: Alex Grozav --- .../editor-ui/src/components/ExecutionsList.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/packages/editor-ui/src/components/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsList.vue index 7f510a48b68..8916e892c40 100644 --- a/packages/editor-ui/src/components/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsList.vue @@ -79,9 +79,11 @@ /> - {{ - execution.workflowName || $locale.baseText('executionsList.unsavedWorkflow') - }} + {{ + execution.workflowName || $locale.baseText('executionsList.unsavedWorkflow') + }} {{ formatDate(execution.startedAt) }} @@ -1192,4 +1194,9 @@ export default defineComponent({ height: 48px; margin-bottom: var(--spacing-2xs); } + +.link { + color: var(--color-text-light); + text-decoration: underline; +}