web: fix linting

This commit is contained in:
Jens Langhammer 2020-12-31 11:34:30 +01:00
parent 0f4d5bc3b0
commit d8dc1f8bb5
1 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ export class EventInfo extends LitElement {
</div>
</div>`;
case "policy_execution":
return html`<div class="pf-l-flex">
return html`<div class="pf-l-flex">
<div class="pf-l-flex__item">
<h3>${gettext("Request")}</h3>
<ul class="pf-c-list">
@ -110,8 +110,8 @@ export class EventInfo extends LitElement {
<li>${gettext("Messages")}:
<ul class="pf-c-list">
${((this.event.context.result as EventContext).messages as string[]).map(msg => {
return html`<li>${msg}</li>`;
})}
return html`<li>${msg}</li>`;
})}
</ul>
</li>
</ul>