mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 03:22:11 +00:00
seekTimeDurationSelect renamed
This commit is contained in:
parent
6e5c2e6a87
commit
c7d13fbaf3
2 changed files with 4 additions and 4 deletions
|
|
@ -27,7 +27,7 @@ const Settings = () => {
|
||||||
subtitlesTextColorInput,
|
subtitlesTextColorInput,
|
||||||
subtitlesBackgroundColorInput,
|
subtitlesBackgroundColorInput,
|
||||||
subtitlesOutlineColorInput,
|
subtitlesOutlineColorInput,
|
||||||
seekTimeDuration,
|
seekTimeDurationSelect,
|
||||||
bingeWatchingCheckbox,
|
bingeWatchingCheckbox,
|
||||||
playInBackgroundCheckbox,
|
playInBackgroundCheckbox,
|
||||||
playInExternalPlayerCheckbox,
|
playInExternalPlayerCheckbox,
|
||||||
|
|
@ -310,7 +310,7 @@ const Settings = () => {
|
||||||
</div>
|
</div>
|
||||||
<Multiselect
|
<Multiselect
|
||||||
className={classnames(styles['option-input-container'], styles['multiselect-container'])}
|
className={classnames(styles['option-input-container'], styles['multiselect-container'])}
|
||||||
{...seekTimeDuration}
|
{...seekTimeDurationSelect}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className={styles['option-container']}>
|
<div className={styles['option-container']}>
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@ const useProfileSettingsInputs = (profile) => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}), [profile.settings]);
|
}), [profile.settings]);
|
||||||
const seekTimeDuration = useDeepEqualMemo(() => ({
|
const seekTimeDurationSelect = useDeepEqualMemo(() => ({
|
||||||
options: CONSTANTS.SEEK_TIME_DURATIONS.map((size) => ({
|
options: CONSTANTS.SEEK_TIME_DURATIONS.map((size) => ({
|
||||||
value: `${size}`,
|
value: `${size}`,
|
||||||
label: `${size / 1000}s`
|
label: `${size / 1000}s`
|
||||||
|
|
@ -214,7 +214,7 @@ const useProfileSettingsInputs = (profile) => {
|
||||||
subtitlesTextColorInput,
|
subtitlesTextColorInput,
|
||||||
subtitlesBackgroundColorInput,
|
subtitlesBackgroundColorInput,
|
||||||
subtitlesOutlineColorInput,
|
subtitlesOutlineColorInput,
|
||||||
seekTimeDuration,
|
seekTimeDurationSelect,
|
||||||
bingeWatchingCheckbox,
|
bingeWatchingCheckbox,
|
||||||
playInBackgroundCheckbox,
|
playInBackgroundCheckbox,
|
||||||
playInExternalPlayerCheckbox,
|
playInExternalPlayerCheckbox,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue