diff --git a/web/src/components/player/PreviewThumbnailPlayer.tsx b/web/src/components/player/PreviewThumbnailPlayer.tsx index 47d232409..1fdcaa8b5 100644 --- a/web/src/components/player/PreviewThumbnailPlayer.tsx +++ b/web/src/components/player/PreviewThumbnailPlayer.tsx @@ -186,8 +186,8 @@ function PreviewContent({ const touchEnd = new Date().getTime(); - // consider tap less than 300 ms - if (touchEnd - touchStart < 300) { + // consider tap less than 100 ms + if (touchEnd - touchStart < 100) { onClick(); } }); diff --git a/web/src/pages/ConfigEditor.tsx b/web/src/pages/ConfigEditor.tsx index 9ae1cee82..cd0143dc9 100644 --- a/web/src/pages/ConfigEditor.tsx +++ b/web/src/pages/ConfigEditor.tsx @@ -122,7 +122,7 @@ function ConfigEditor() { } return ( -