Whether the arrow inside the sort header should be rendered.
()
| 214 | |
| 215 | /** Whether the arrow inside the sort header should be rendered. */ |
| 216 | _renderArrow() { |
| 217 | return !this._isDisabled() || this._isSorted(); |
| 218 | } |
| 219 | |
| 220 | private _updateSortActionDescription(newDescription: string) { |
| 221 | // We use AriaDescriber for the sort button instead of setting an `aria-label` because some |
nothing calls this directly
no test coverage detected