web: fix outpost health display

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-03-16 14:02:50 +01:00
parent c8ed650f1c
commit a9339589bb
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export class OutpostHealth extends LitElement {
${h.versionOutdated ?
html`<i class="fas fa-times pf-m-danger"></i>
${gettext(`${h.version}, should be ${h.versionShould}`)}` :
html`<i class="fas fa-check pf-m-success"></i>${gettext(`Version: ${h.version}`)}`}
html`<i class="fas fa-check pf-m-success"></i>${gettext(`Version: ${h.version || ""}`)}`}
</li>
</ul>
</li>`;