fix handling of instances with empty name,

improve instance table headers
This commit is contained in:
2023-10-16 22:32:19 +00:00
parent 72db810ef0
commit c4ddc4ded3
2 changed files with 5 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ class InstanceCard extends HTMLElement {
}
}
else {
nameParagraph.innerText = this.name ? this.name : "";
nameParagraph.innerHTML = this.name ? this.name : " ";
}
const typeParagraph = this.shadowRoot.querySelector("#instance-type");