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 <alex@grozav.com>
This commit is contained in:
romainminaud 2023-06-02 12:17:49 +02:00 committed by GitHub
parent e1aa654835
commit 6ddf16128b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,9 +79,11 @@
/>
</td>
<td>
<span class="ph-no-capture">{{
execution.workflowName || $locale.baseText('executionsList.unsavedWorkflow')
}}</span>
<span class="ph-no-capture" @click.stop="displayExecution(execution)"
><a href="#" :class="$style.link">{{
execution.workflowName || $locale.baseText('executionsList.unsavedWorkflow')
}}</a></span
>
</td>
<td>
<span>{{ formatDate(execution.startedAt) }}</span>
@ -1192,4 +1194,9 @@ export default defineComponent({
height: 48px;
margin-bottom: var(--spacing-2xs);
}
.link {
color: var(--color-text-light);
text-decoration: underline;
}
</style>