Skip to content

Commit

Permalink
fix(data-table): Reverse the arrow direction icon for column sorting
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 301644946
  • Loading branch information
abhiomkar authored and copybara-github committed Mar 18, 2020
1 parent 6b48781 commit a7c827f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/mdc-data-table/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ MDC Data Table component auto instantiates `MDCCheckbox` for header row checkbox
<div class="mdc-data-table__header-cell-label">
Dessert
</div>
<button class="mdc-icon-button material-icons mdc-data-table__sort-icon-button">arrow_downward</button>
<button class="mdc-icon-button material-icons mdc-data-table__sort-icon-button">arrow_upward</button>
</div>
</th>
<th
Expand All @@ -226,7 +226,7 @@ MDC Data Table component auto instantiates `MDCCheckbox` for header row checkbox
aria-sort="ascending"
>
<div class="mdc-data-table__header-cell-wrapper">
<button class="mdc-icon-button material-icons mdc-data-table__sort-icon-button">arrow_downward</button>
<button class="mdc-icon-button material-icons mdc-data-table__sort-icon-button">arrow_upward</button>
<div class="mdc-data-table__header-cell-label">
Carbs (g)
</div>
Expand All @@ -238,7 +238,7 @@ MDC Data Table component auto instantiates `MDCCheckbox` for header row checkbox
scope="col"
>
<div class="mdc-data-table__header-cell-wrapper">
<button class="mdc-icon-button material-icons mdc-data-table__sort-icon-button">arrow_downward</button>
<button class="mdc-icon-button material-icons mdc-data-table__sort-icon-button">arrow_upward</button>
<div class="mdc-data-table__header-cell-label">
Protein (g)
</div>
Expand Down

0 comments on commit a7c827f

Please sign in to comment.