From 62528b2413feec8fdd5f30a586063b065c4b0b0e Mon Sep 17 00:00:00 2001 From: Kevin Jahrens <55409634+killi199@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:08:14 +0200 Subject: [PATCH] Fix back paths (#21112) Co-authored-by: Paul Bottein --- .../ha-config-application-credentials.ts | 2 +- src/panels/config/users/ha-config-users.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panels/config/application_credentials/ha-config-application-credentials.ts b/src/panels/config/application_credentials/ha-config-application-credentials.ts index 1431491f3b..b69ed369cc 100644 --- a/src/panels/config/application_credentials/ha-config-application-credentials.ts +++ b/src/panels/config/application_credentials/ha-config-application-credentials.ts @@ -96,7 +96,7 @@ export class HaConfigApplicationCredentials extends LitElement { .hass=${this.hass} .narrow=${this.narrow} .route=${this.route} - backPath="/config" + back-path="/config" .tabs=${configSections.devices} .columns=${this._columns(this.narrow, this.hass.localize)} .data=${this._getApplicationCredentials( diff --git a/src/panels/config/users/ha-config-users.ts b/src/panels/config/users/ha-config-users.ts index a902b07ad2..e761db2fa8 100644 --- a/src/panels/config/users/ha-config-users.ts +++ b/src/panels/config/users/ha-config-users.ts @@ -182,7 +182,7 @@ export class HaConfigUsers extends LitElement { .hass=${this.hass} .narrow=${this.narrow} .route=${this.route} - backPath="/config" + back-path="/config" .tabs=${configSections.persons} .columns=${this._columns(this.narrow, this.hass.localize)} .data=${this._userData(this._users, this.hass.localize)}