Changed trickplay debounce to 10ms and added padding for EpisodeList

This commit is contained in:
Alex Kim
2024-12-09 04:46:09 +11:00
parent 75639c4424
commit b762aff6e2
2 changed files with 2 additions and 2 deletions

View File

@@ -292,7 +292,7 @@ export const Controls: React.FC<Props> = ({
const minutes = Math.floor((progressInSeconds % 3600) / 60);
const seconds = progressInSeconds % 60;
setTime({ hours, minutes, seconds });
}, 20), // 100ms debounce delay
}, 10),
[]
);

View File

@@ -203,7 +203,7 @@ export const EpisodeList: React.FC<Props> = ({ item, close }) => {
style={{
justifyContent: "space-between",
}}
className={`flex flex-row items-center space-x-2 z-10 py-4 pr-4`}
className={`flex flex-row items-center space-x-2 z-10 p-4`}
>
{seriesItem && (
<SeasonDropdown