Skip to content

Commit fe690df

Browse files
authoredJul 27, 2024··
docs(angular-table): Update table-state.md (#5677)
1 parent 7bf42dd commit fe690df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/framework/angular/guide/table-state.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ import {combineLatest, switchMap} from 'rxjs';
7070

7171
class TableComponent {
7272
readonly columnFilters = signal<ColumnFiltersState>([]) //no default filters
73-
readonly sorting = signal<SortingState[]>([
73+
readonly sorting = signal<SortingState>([
7474
{
7575
id: 'age',
7676
desc: true, //sort by age in descending order by default

0 commit comments

Comments
 (0)
Please sign in to comment.