mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
Improve tab behaviour
This commit is contained in:
@@ -289,6 +289,10 @@ function SeriesSearchInput() {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!inputRef.current?.value) {
|
||||
return;
|
||||
}
|
||||
|
||||
const { highlightedSectionIndex, highlightedSuggestionIndex } =
|
||||
autosuggestRef.current.state;
|
||||
|
||||
|
||||
@@ -141,6 +141,7 @@ function SeriesIndexPoster(props: SeriesIndexPosterProps) {
|
||||
name={icons.REFRESH}
|
||||
title={translate('RefreshSeries')}
|
||||
isSpinning={isRefreshingSeries}
|
||||
tabIndex={-1}
|
||||
onPress={onRefreshPress}
|
||||
/>
|
||||
|
||||
@@ -150,6 +151,7 @@ function SeriesIndexPoster(props: SeriesIndexPosterProps) {
|
||||
name={icons.SEARCH}
|
||||
title={translate('SearchForMonitoredEpisodes')}
|
||||
isSpinning={isSearchingSeries}
|
||||
tabIndex={-1}
|
||||
onPress={onSearchPress}
|
||||
/>
|
||||
) : null}
|
||||
@@ -158,6 +160,7 @@ function SeriesIndexPoster(props: SeriesIndexPosterProps) {
|
||||
className={styles.action}
|
||||
name={icons.EDIT}
|
||||
title={translate('EditSeries')}
|
||||
tabIndex={-1}
|
||||
onPress={onEditSeriesPress}
|
||||
/>
|
||||
</Label>
|
||||
|
||||
Reference in New Issue
Block a user