web/admin: show flow title in list

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-12-30 22:10:31 +01:00
parent 386944117e
commit 8ab5c04c2c
8 changed files with 27 additions and 10 deletions

View File

@ -91,9 +91,14 @@ export class FlowListPage extends TablePage<Flow> {
row(item: Flow): TemplateResult[] {
return [
html`<a href="#/flow/flows/${item.slug}">
<code>${item.slug}</code>
</a>`,
html`<div>
<div>
<a href="#/flow/flows/${item.slug}">
<code>${item.slug}</code>
</a>
</div>
<small>${item.title}</small>
</div>`,
html`${item.name}`,
html`${Array.from(item.stages || []).length}`,
html`${Array.from(item.policies || []).length}`,