1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -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
@@ -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>