1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Fixed: Select all on Activity: Queue

This commit is contained in:
Mark McDowall
2019-02-19 17:54:57 -08:00
parent 9b212d11f0
commit 728c0e8272
2 changed files with 9 additions and 3 deletions
@@ -30,6 +30,7 @@ class TableHeaderCell extends Component {
const {
className,
name,
columnLabel,
isSortable,
isVisible,
isModifiable,
@@ -49,10 +50,11 @@ class TableHeaderCell extends Component {
return (
isSortable ?
<Link
{...otherProps}
component="th"
className={className}
title={columnLabel}
onPress={this.onPress}
{...otherProps}
>
{children}
@@ -75,7 +77,7 @@ class TableHeaderCell extends Component {
TableHeaderCell.propTypes = {
className: PropTypes.string,
name: PropTypes.string.isRequired,
label: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
columnLabel: PropTypes.string,
isSortable: PropTypes.bool,
isVisible: PropTypes.bool,
isModifiable: PropTypes.bool,