Fix voice assistant expose datatable storage key (#20843)

This commit is contained in:
Paul Bottein 2024-05-21 19:20:29 +02:00 committed by GitHub
parent 9b28c7cf69
commit ae9e1b724f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -98,10 +98,18 @@ export class VoiceAssistantsExpose extends LitElement {
})
private _activeSorting?: SortingChangedEvent;
@storage({ key: "devices-table-grouping", state: false, subscribe: false })
@storage({
key: "voice-expose-table-grouping",
state: false,
subscribe: false,
})
private _activeGrouping?: string;
@storage({ key: "devices-table-collapsed", state: false, subscribe: false })
@storage({
key: "voice-expose-table-collapsed",
state: false,
subscribe: false,
})
private _activeCollapsed?: string;
@query("hass-tabs-subpage-data-table", true)