1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix autofocus on Channels tab

This limits the focus scope to the current tab, so that the
channel card is selected the first time you open it.

[for testing]
The Channels tab should be the default for the LiveTV library.
This commit is contained in:
Dmitry Lyzo 2022-01-16 18:54:51 +03:00
parent 719ae14d3f
commit 82dbfce374

View file

@ -120,7 +120,7 @@ export default function (view, params, tabContent) {
isLoading = false;
import('../../components/autoFocuser').then(({default: autoFocuser}) => {
autoFocuser.autoFocus(view);
autoFocuser.autoFocus(context);
});
});
}