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