web/admin: fix list of outpost status
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
00c8054893
commit
5a802bcf83
|
@ -50,7 +50,7 @@ export class OutpostHealthElement extends LitElement {
|
|||
</ul>
|
||||
</li>`;
|
||||
}
|
||||
return html`${this.outpostHealth.map((h) => {
|
||||
return html`<ul>${this.outpostHealth.map((h) => {
|
||||
return html`<li>
|
||||
<ul>
|
||||
<li role="cell">
|
||||
|
@ -64,7 +64,7 @@ export class OutpostHealthElement extends LitElement {
|
|||
</li>
|
||||
</ul>
|
||||
</li>`;
|
||||
})}`;
|
||||
})}</ul>`;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in New Issue