1
0
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:
Mark McDowall
2026-01-06 18:43:58 -08:00
parent 276e67b5fa
commit ae13ce4ac6
2 changed files with 7 additions and 0 deletions
@@ -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>