mirror of https://github.com/jetkvm/kvm.git
Lower minimum play delay for pastes.
This commit is contained in:
parent
71c902c34e
commit
a9a436cadc
|
|
@ -19,7 +19,7 @@ import { TextAreaWithLabel } from "@components/TextArea";
|
||||||
// uint32 max value / 4
|
// uint32 max value / 4
|
||||||
const pasteMaxLength = 1073741824;
|
const pasteMaxLength = 1073741824;
|
||||||
const defaultDelay = 20;
|
const defaultDelay = 20;
|
||||||
const minimumDelay = 10;
|
const minimumDelay = 5;
|
||||||
const maximumDelay = 65534;
|
const maximumDelay = 65534;
|
||||||
|
|
||||||
export default function PasteModal() {
|
export default function PasteModal() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue