mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 05:44:50 +00:00
Improve is visible property check for discover movies
This commit is contained in:
parent
62722d45b0
commit
9780d20f8a
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ function isVisible(row, props) {
|
||||||
valueProp
|
valueProp
|
||||||
} = row;
|
} = row;
|
||||||
|
|
||||||
return _.has(props, valueProp) && (_.get(props, showProp) || props.sortKey === name);
|
return _.has(props, valueProp) && _.get(props, valueProp) !== null && (props[showProp] || props.sortKey === name);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getInfoRowProps(row, props) {
|
function getInfoRowProps(row, props) {
|
||||||
|
|
Loading…
Reference in a new issue