mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix typo
This commit is contained in:
parent
3ae27e05c7
commit
9cd330ef15
6 changed files with 20 additions and 20 deletions
|
@ -322,7 +322,7 @@ const FilterButton: FC<FilterButtonProps> = ({
|
||||||
</AccordionSummary>
|
</AccordionSummary>
|
||||||
<AccordionDetails>
|
<AccordionDetails>
|
||||||
<FiltersGenres
|
<FiltersGenres
|
||||||
filtes={data}
|
filters={data}
|
||||||
libraryViewSettings={
|
libraryViewSettings={
|
||||||
libraryViewSettings
|
libraryViewSettings
|
||||||
}
|
}
|
||||||
|
@ -356,7 +356,7 @@ const FilterButton: FC<FilterButtonProps> = ({
|
||||||
</AccordionSummary>
|
</AccordionSummary>
|
||||||
<AccordionDetails>
|
<AccordionDetails>
|
||||||
<FiltersOfficialRatings
|
<FiltersOfficialRatings
|
||||||
filtes={data}
|
filters={data}
|
||||||
libraryViewSettings={
|
libraryViewSettings={
|
||||||
libraryViewSettings
|
libraryViewSettings
|
||||||
}
|
}
|
||||||
|
@ -383,7 +383,7 @@ const FilterButton: FC<FilterButtonProps> = ({
|
||||||
</AccordionSummary>
|
</AccordionSummary>
|
||||||
<AccordionDetails>
|
<AccordionDetails>
|
||||||
<FiltersTags
|
<FiltersTags
|
||||||
filtes={data}
|
filters={data}
|
||||||
libraryViewSettings={
|
libraryViewSettings={
|
||||||
libraryViewSettings
|
libraryViewSettings
|
||||||
}
|
}
|
||||||
|
@ -410,7 +410,7 @@ const FilterButton: FC<FilterButtonProps> = ({
|
||||||
</AccordionSummary>
|
</AccordionSummary>
|
||||||
<AccordionDetails>
|
<AccordionDetails>
|
||||||
<FiltersYears
|
<FiltersYears
|
||||||
filtes={data}
|
filters={data}
|
||||||
libraryViewSettings={
|
libraryViewSettings={
|
||||||
libraryViewSettings
|
libraryViewSettings
|
||||||
}
|
}
|
||||||
|
@ -439,7 +439,7 @@ const FilterButton: FC<FilterButtonProps> = ({
|
||||||
</AccordionSummary>
|
</AccordionSummary>
|
||||||
<AccordionDetails>
|
<AccordionDetails>
|
||||||
<FiltersStudios
|
<FiltersStudios
|
||||||
filtes={studios}
|
filters={studios}
|
||||||
libraryViewSettings={libraryViewSettings}
|
libraryViewSettings={libraryViewSettings}
|
||||||
setLibraryViewSettings={
|
setLibraryViewSettings={
|
||||||
setLibraryViewSettings
|
setLibraryViewSettings
|
||||||
|
|
|
@ -6,13 +6,13 @@ import Checkbox from '@mui/material/Checkbox';
|
||||||
import { LibraryViewSettings } from 'types/library';
|
import { LibraryViewSettings } from 'types/library';
|
||||||
|
|
||||||
interface FiltersGenresProps {
|
interface FiltersGenresProps {
|
||||||
filtes?: QueryFiltersLegacy;
|
filters?: QueryFiltersLegacy;
|
||||||
libraryViewSettings: LibraryViewSettings;
|
libraryViewSettings: LibraryViewSettings;
|
||||||
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const FiltersGenres: FC<FiltersGenresProps> = ({
|
const FiltersGenres: FC<FiltersGenresProps> = ({
|
||||||
filtes,
|
filters,
|
||||||
libraryViewSettings,
|
libraryViewSettings,
|
||||||
setLibraryViewSettings
|
setLibraryViewSettings
|
||||||
}) => {
|
}) => {
|
||||||
|
@ -47,7 +47,7 @@ const FiltersGenres: FC<FiltersGenresProps> = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
{filtes?.Genres?.map((filter) => (
|
{filters?.Genres?.map((filter) => (
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
key={filter}
|
key={filter}
|
||||||
control={
|
control={
|
||||||
|
|
|
@ -6,13 +6,13 @@ import Checkbox from '@mui/material/Checkbox';
|
||||||
import { LibraryViewSettings } from 'types/library';
|
import { LibraryViewSettings } from 'types/library';
|
||||||
|
|
||||||
interface FiltersOfficialRatingsProps {
|
interface FiltersOfficialRatingsProps {
|
||||||
filtes?: QueryFiltersLegacy;
|
filters?: QueryFiltersLegacy;
|
||||||
libraryViewSettings: LibraryViewSettings;
|
libraryViewSettings: LibraryViewSettings;
|
||||||
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const FiltersOfficialRatings: FC<FiltersOfficialRatingsProps> = ({
|
const FiltersOfficialRatings: FC<FiltersOfficialRatingsProps> = ({
|
||||||
filtes,
|
filters,
|
||||||
libraryViewSettings,
|
libraryViewSettings,
|
||||||
setLibraryViewSettings
|
setLibraryViewSettings
|
||||||
}) => {
|
}) => {
|
||||||
|
@ -47,7 +47,7 @@ const FiltersOfficialRatings: FC<FiltersOfficialRatingsProps> = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
{filtes?.OfficialRatings?.map((filter) => (
|
{filters?.OfficialRatings?.map((filter) => (
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
key={filter}
|
key={filter}
|
||||||
control={
|
control={
|
||||||
|
|
|
@ -6,13 +6,13 @@ import Checkbox from '@mui/material/Checkbox';
|
||||||
import { LibraryViewSettings } from 'types/library';
|
import { LibraryViewSettings } from 'types/library';
|
||||||
|
|
||||||
interface FiltersStudiosProps {
|
interface FiltersStudiosProps {
|
||||||
filtes?: BaseItemDtoQueryResult;
|
filters?: BaseItemDtoQueryResult;
|
||||||
libraryViewSettings: LibraryViewSettings;
|
libraryViewSettings: LibraryViewSettings;
|
||||||
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const FiltersStudios: FC<FiltersStudiosProps> = ({
|
const FiltersStudios: FC<FiltersStudiosProps> = ({
|
||||||
filtes,
|
filters,
|
||||||
libraryViewSettings,
|
libraryViewSettings,
|
||||||
setLibraryViewSettings
|
setLibraryViewSettings
|
||||||
}) => {
|
}) => {
|
||||||
|
@ -47,7 +47,7 @@ const FiltersStudios: FC<FiltersStudiosProps> = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
{filtes?.Items?.map((filter) => (
|
{filters?.Items?.map((filter) => (
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
key={filter.Id}
|
key={filter.Id}
|
||||||
control={
|
control={
|
||||||
|
|
|
@ -6,13 +6,13 @@ import Checkbox from '@mui/material/Checkbox';
|
||||||
import { LibraryViewSettings } from 'types/library';
|
import { LibraryViewSettings } from 'types/library';
|
||||||
|
|
||||||
interface FiltersTagsProps {
|
interface FiltersTagsProps {
|
||||||
filtes?: QueryFiltersLegacy;
|
filters?: QueryFiltersLegacy;
|
||||||
libraryViewSettings: LibraryViewSettings;
|
libraryViewSettings: LibraryViewSettings;
|
||||||
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const FiltersTags: FC<FiltersTagsProps> = ({
|
const FiltersTags: FC<FiltersTagsProps> = ({
|
||||||
filtes,
|
filters,
|
||||||
libraryViewSettings,
|
libraryViewSettings,
|
||||||
setLibraryViewSettings
|
setLibraryViewSettings
|
||||||
}) => {
|
}) => {
|
||||||
|
@ -47,7 +47,7 @@ const FiltersTags: FC<FiltersTagsProps> = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
{filtes?.Tags?.map((filter) => (
|
{filters?.Tags?.map((filter) => (
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
key={filter}
|
key={filter}
|
||||||
control={
|
control={
|
||||||
|
|
|
@ -6,13 +6,13 @@ import Checkbox from '@mui/material/Checkbox';
|
||||||
import { LibraryViewSettings } from 'types/library';
|
import { LibraryViewSettings } from 'types/library';
|
||||||
|
|
||||||
interface FiltersYearsProps {
|
interface FiltersYearsProps {
|
||||||
filtes?: QueryFiltersLegacy;
|
filters?: QueryFiltersLegacy;
|
||||||
libraryViewSettings: LibraryViewSettings;
|
libraryViewSettings: LibraryViewSettings;
|
||||||
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
setLibraryViewSettings: React.Dispatch<React.SetStateAction<LibraryViewSettings>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const FiltersYears: FC<FiltersYearsProps> = ({
|
const FiltersYears: FC<FiltersYearsProps> = ({
|
||||||
filtes,
|
filters,
|
||||||
libraryViewSettings,
|
libraryViewSettings,
|
||||||
setLibraryViewSettings
|
setLibraryViewSettings
|
||||||
}) => {
|
}) => {
|
||||||
|
@ -47,7 +47,7 @@ const FiltersYears: FC<FiltersYearsProps> = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
{filtes?.Years?.map((filter) => (
|
{filters?.Years?.map((filter) => (
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
key={filter}
|
key={filter}
|
||||||
control={
|
control={
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue