mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
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:
parent
e1aa654835
commit
6ddf16128b
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue