mirror of https://github.com/jetkvm/kvm.git
Update ui/src/components/popovers/PasteModal.tsx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
832106c6f9
commit
f9a16eede7
|
|
@ -195,7 +195,7 @@ export default function PasteModal() {
|
|||
setDelayValue(parseInt(e.target.value, 10));
|
||||
}}
|
||||
/>
|
||||
{delayValue < defaultDelay || delayValue > 65534 && (
|
||||
{(delayValue < defaultDelay || delayValue > 65534) && (
|
||||
<div className="mt-2 flex items-center gap-x-2">
|
||||
<ExclamationCircleIcon className="h-4 w-4 text-red-500 dark:text-red-400" />
|
||||
<span className="text-xs text-red-500 dark:text-red-400">
|
||||
|
|
|
|||
Loading…
Reference in New Issue