mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
typo
This commit is contained in:
parent
a428ad0655
commit
45dce18e4d
@ -158,7 +158,7 @@ export class HaTabsSubpageDataTable extends LitElement {
|
||||
|
||||
@property({ type: Boolean }) public showFilters = false;
|
||||
|
||||
@property({ attribute: false }) public initalSorting?: {
|
||||
@property({ attribute: false }) public initialSorting?: {
|
||||
column: string;
|
||||
direction: SortingDirection;
|
||||
};
|
||||
@ -196,9 +196,9 @@ export class HaTabsSubpageDataTable extends LitElement {
|
||||
if (this.initialGroupColumn) {
|
||||
this._setGroupColumn(this.initialGroupColumn);
|
||||
}
|
||||
if (this.initalSorting) {
|
||||
this._sortColumn = this.initalSorting.column;
|
||||
this._sortDirection = this.initalSorting.direction;
|
||||
if (this.initialSorting) {
|
||||
this._sortColumn = this.initialSorting.column;
|
||||
this._sortDirection = this.initialSorting.direction;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -671,7 +671,7 @@ export class HaConfigDeviceDashboard extends SubscribeMixin(LitElement) {
|
||||
)
|
||||
).length}
|
||||
.initialGroupColumn=${this._activeGrouping}
|
||||
.initalSorting=${this._activeSorting}
|
||||
.initialSorting=${this._activeSorting}
|
||||
@clear-filter=${this._clearFilter}
|
||||
@search-changed=${this._handleSearchChange}
|
||||
@sorting-changed=${this._handleSortingChanged}
|
||||
|
Loading…
x
Reference in New Issue
Block a user