Whether this MatSortHeader is currently sorted in either ascending or descending order.
()
| 188 | |
| 189 | /** Whether this MatSortHeader is currently sorted in either ascending or descending order. */ |
| 190 | _isSorted() { |
| 191 | return ( |
| 192 | this._sort.active == this.id && |
| 193 | (this._sort.direction === 'asc' || this._sort.direction === 'desc') |
| 194 | ); |
| 195 | } |
| 196 | |
| 197 | _isDisabled() { |
| 198 | return this._sort.disabled || this.disabled; |
no outgoing calls
no test coverage detected