web/admin: fix list of outpost status

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-05-11 22:59:45 +02:00
parent 00c8054893
commit 5a802bcf83
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ export class OutpostHealthElement extends LitElement {
</ul> </ul>
</li>`; </li>`;
} }
return html`${this.outpostHealth.map((h) => { return html`<ul>${this.outpostHealth.map((h) => {
return html`<li> return html`<li>
<ul> <ul>
<li role="cell"> <li role="cell">
@ -64,7 +64,7 @@ export class OutpostHealthElement extends LitElement {
</li> </li>
</ul> </ul>
</li>`; </li>`;
})}`; })}</ul>`;
} }
} }