1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-21 10:17:13 +00:00

Bugfix: Fixed column widths in the dashboard config page (#26777)

Fixed column widths in dashboard config
This commit is contained in:
uptimeZERO_
2025-08-30 12:54:37 +01:00
committed by GitHub
parent 7132ee157f
commit 14fd29808c

View File

@@ -199,8 +199,10 @@ export class HaConfigLovelaceDashboards extends LitElement {
"ui.panel.config.lovelace.dashboards.picker.headers.require_admin"
),
sortable: true,
type: "icon",
hidden: narrow,
type: "icon",
minWidth: "120px",
maxWidth: "120px",
template: (dashboard) =>
dashboard.require_admin
? html`<ha-svg-icon .path=${mdiCheck}></ha-svg-icon>`
@@ -210,8 +212,10 @@ export class HaConfigLovelaceDashboards extends LitElement {
title: localize(
"ui.panel.config.lovelace.dashboards.picker.headers.sidebar"
),
type: "icon",
hidden: narrow,
type: "icon",
minWidth: "120px",
maxWidth: "120px",
template: (dashboard) =>
dashboard.show_in_sidebar
? html`<ha-svg-icon .path=${mdiCheck}></ha-svg-icon>`