make _macAddress state

This commit is contained in:
J. Nick Koston 2025-04-17 08:29:21 -10:00
parent 9116f2c834
commit b3bf63f2ca
No known key found for this signature in database

View File

@ -22,7 +22,7 @@ export class DHCPConfigPanel extends SubscribeMixin(LitElement) {
@property({ attribute: false }) public route!: Route; @property({ attribute: false }) public route!: Route;
@property({ attribute: false }) public macAddress?: string; @state() private _macAddress?: string;
@property({ type: Boolean }) public narrow = false; @property({ type: Boolean }) public narrow = false;
@ -84,7 +84,7 @@ export class DHCPConfigPanel extends SubscribeMixin(LitElement) {
const searchParams = extractSearchParamsObject(); const searchParams = extractSearchParamsObject();
const macAddress = searchParams.mac_address; const macAddress = searchParams.mac_address;
if (macAddress) { if (macAddress) {
this.macAddress = macAddress.toUpperCase(); this._macAddress = macAddress.toUpperCase();
} }
} }
@ -96,7 +96,7 @@ export class DHCPConfigPanel extends SubscribeMixin(LitElement) {
.route=${this.route} .route=${this.route}
.columns=${this._columns(this.hass.localize)} .columns=${this._columns(this.hass.localize)}
.data=${this._dataWithIds(this._data)} .data=${this._dataWithIds(this._data)}
filter=${this.macAddress || ""} filter=${this._macAddress || ""}
></hass-tabs-subpage-data-table> ></hass-tabs-subpage-data-table>
`; `;
} }