1
0
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-07-30 05:31:26 +00:00
This commit is contained in:
AlphaX-Projects
2023-03-16 11:11:10 +01:00
committed by GitHub
parent 6f7d0d3950
commit 961511595c

@@ -362,7 +362,7 @@ class Chat extends LitElement {
</div>
<vaadin-grid theme="compact" id="blockedGrid" ?hidden="${this.isEmptyArray(this.blockedUserList)}" aria-label="Blocked List" .items="${this.blockedUserList}" all-rows-visible>
<vaadin-grid-column auto-width header="${translate("chatpage.cchange11")}" .renderer=${(root, column, data) => {
if (data.item.name = 'No registered name') {
if (data.item.name === "No registered name") {
render(html`${translate("chatpage.cchange15")}`, root);
} else {
render(html`${data.item.name}`, root);