Skip to content

Commit

Permalink
Fix voice assistant expose datatable storage key (#20843)
Browse files Browse the repository at this point in the history
  • Loading branch information
piitaya authored May 21, 2024
1 parent 9b28c7c commit ae9e1b7
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ae9e1b7

Please sign in to comment.