Fix user name in config page (#18187)

This commit is contained in:
Paul Bottein 2023-10-11 05:25:21 +02:00 committed by GitHub
parent 8f1a6ef1b1
commit 51f8d91ddf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ export class HaConfigUsers extends LitElement {
width: "20%",
direction: "asc",
hidden: narrow,
template: (user) => html`${user.name || "—"}`,
template: (user) => html`${user.username || "—"}`,
},
group_ids: {
title: localize("ui.panel.config.users.picker.headers.group"),