1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
This commit is contained in:
grafixeyehero 2023-09-22 21:16:04 +03:00
parent 1b844ef624
commit a8deca68ea

View file

@ -21,7 +21,7 @@ const AlphabetPicker: React.FC<AlphabetPickerProps> = ({
libraryViewSettings, libraryViewSettings,
setLibraryViewSettings setLibraryViewSettings
}) => { }) => {
const handelValue = useCallback( const handleValue = useCallback(
( (
event: React.MouseEvent<HTMLElement>, event: React.MouseEvent<HTMLElement>,
newValue: string | null | undefined newValue: string | null | undefined
@ -66,7 +66,7 @@ const AlphabetPicker: React.FC<AlphabetPickerProps> = ({
exclusive exclusive
color='primary' color='primary'
size='small' size='small'
onChange={handelValue} onChange={handleValue}
> >
{letters.map((l) => ( {letters.map((l) => (
<ToggleButton <ToggleButton