forked from Github/frigate
UI Fixes (#9177)
* Fix mobile crash * Reduce tap timeout * Fix selection * Try to fix safari empty frame * Fix config editor
This commit is contained in:
committed by
Blake Blackshear
parent
d2ab44ce72
commit
6dd9d54f70
@@ -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();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user