web/elements: use same icon for changelog
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
a736e708ae
commit
c91b40fc07
|
@ -59,7 +59,7 @@ export class ObjectChangelog extends Table<Event> {
|
||||||
${t`On behalf of ${item.user.on_behalf_of.username}`}
|
${t`On behalf of ${item.user.on_behalf_of.username}`}
|
||||||
</small>` : html``}`,
|
</small>` : html``}`,
|
||||||
html`<span>${item.created?.toLocaleString()}</span>`,
|
html`<span>${item.created?.toLocaleString()}</span>`,
|
||||||
html`<span>${item.clientIp}</span>`,
|
html`<span>${item.clientIp || "-"}</span>`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ export class ObjectChangelog extends Table<Event> {
|
||||||
}
|
}
|
||||||
|
|
||||||
renderEmpty(): TemplateResult {
|
renderEmpty(): TemplateResult {
|
||||||
return super.renderEmpty(html`<ak-empty-state header=${t`No Events found.`} icon="pf-icon-module">
|
return super.renderEmpty(html`<ak-empty-state header=${t`No Events found.`}>
|
||||||
<div slot="body">
|
<div slot="body">
|
||||||
${t`No matching events could be found.`}
|
${t`No matching events could be found.`}
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in New Issue