Skip to content

Commit

Permalink
docs(angular-table): Update table-state.md (#5677)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklemmon committed Jul 27, 2024
1 parent 7bf42dd commit fe690df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/framework/angular/guide/table-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ import {combineLatest, switchMap} from 'rxjs';

class TableComponent {
readonly columnFilters = signal<ColumnFiltersState>([]) //no default filters
readonly sorting = signal<SortingState[]>([
readonly sorting = signal<SortingState>([
{
id: 'age',
desc: true, //sort by age in descending order by default
Expand Down

0 comments on commit fe690df

Please sign in to comment.