1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-16 23:39:44 +02:00

Fixed: Search Button Display on Movie Index

This commit is contained in:
Bakerboy448 2023-05-02 18:42:37 -05:00 committed by Qstick
parent 66b7b3b7d6
commit 6086b0d4e4

View File

@ -389,15 +389,14 @@ function MovieIndexRow(props: MovieIndexRowProps) {
onPress={onRefreshPress} onPress={onRefreshPress}
/> />
{showSearchAction && ( {showSearchAction ? (
<SpinnerIconButton <SpinnerIconButton
className={styles.actions}
name={icons.SEARCH} name={icons.SEARCH}
title={translate('SearchForMovie')} title={translate('SearchForMovie')}
isSpinning={isSearchingMovie} isSpinning={isSearchingMovie}
onPress={onSearchPress} onPress={onSearchPress}
/> />
)} ) : null}
<IconButton <IconButton
name={icons.EDIT} name={icons.EDIT}