Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

[terra-table] Remove Sorting from Table Sections Example #2115

Merged
merged 5 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/terra-framework-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

* Changed
* Removed `sortIndicator` from the first column of Table With Sections example.
* Updated `terra-compact-interactive-list` examples to provide a meaningful name to the column with icons.

* Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Table from 'terra-table';
const tableData = {
cols: [
{
id: 'Column-0', displayName: 'Patient', sortIndicator: 'ascending', isSelectable: true,
id: 'Column-0', displayName: 'Patient', isSelectable: true,
},
{
id: 'Column-1', displayName: 'Location', isSelectable: true,
Expand Down
Loading