forked from Qortal/qortal-ui
Fix grid
This commit is contained in:
parent
6f7d0d3950
commit
961511595c
@ -362,7 +362,7 @@ class Chat extends LitElement {
|
|||||||
</div>
|
</div>
|
||||||
<vaadin-grid theme="compact" id="blockedGrid" ?hidden="${this.isEmptyArray(this.blockedUserList)}" aria-label="Blocked List" .items="${this.blockedUserList}" all-rows-visible>
|
<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) => {
|
<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);
|
render(html`${translate("chatpage.cchange15")}`, root);
|
||||||
} else {
|
} else {
|
||||||
render(html`${data.item.name}`, root);
|
render(html`${data.item.name}`, root);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user