diff --git a/src/frontend/src/alerts/error/index.tsx b/src/frontend/src/alerts/error/index.tsx
index b70a5ae45..1bbf35a37 100644
--- a/src/frontend/src/alerts/error/index.tsx
+++ b/src/frontend/src/alerts/error/index.tsx
@@ -40,7 +40,7 @@ export default function ErrorAlert({
removeAlert(id);
}, 500);
}}
- className="error-build-message nocopy nowheel nopan nodelete nodrag noundo"
+ className="error-build-message noflow nowheel nopan nodelete nodrag"
>
diff --git a/src/frontend/src/alerts/notice/index.tsx b/src/frontend/src/alerts/notice/index.tsx
index 49fb52759..34c9595c6 100644
--- a/src/frontend/src/alerts/notice/index.tsx
+++ b/src/frontend/src/alerts/notice/index.tsx
@@ -36,7 +36,7 @@ export default function NoticeAlert({
setShow(false);
removeAlert(id);
}}
- className="nocopy nowheel nopan nodelete nodrag noundo mt-6 w-96 rounded-md bg-info-background p-4 shadow-xl"
+ className="noflow nowheel nopan nodelete nodrag mt-6 w-96 rounded-md bg-info-background p-4 shadow-xl"
>
diff --git a/src/frontend/src/alerts/success/index.tsx b/src/frontend/src/alerts/success/index.tsx
index 270ae5515..3ec0008e6 100644
--- a/src/frontend/src/alerts/success/index.tsx
+++ b/src/frontend/src/alerts/success/index.tsx
@@ -34,7 +34,7 @@ export default function SuccessAlert({
setShow(false);
removeAlert(id);
}}
- className="success-alert nocopy nowheel nopan nodelete nodrag noundo"
+ className="success-alert noflow nowheel nopan nodelete nodrag"
>
diff --git a/src/frontend/src/components/dropdownComponent/index.tsx b/src/frontend/src/components/dropdownComponent/index.tsx
index 7a3f0fcf2..0adec0734 100644
--- a/src/frontend/src/components/dropdownComponent/index.tsx
+++ b/src/frontend/src/components/dropdownComponent/index.tsx
@@ -78,7 +78,7 @@ export default function Dropdown({
= ({
{setName ? (
= ({
)}
(
className={
!unstyled
? buttonVariants({ variant, size, className })
- : cn(className, "nocopy nowheel nopan nodelete nodrag noundo")
+ : cn(className, "noflow nowheel nopan nodelete nodrag")
}
disabled={loading || disabled}
{...(asChild ? {} : { type: type || "button" })}
diff --git a/src/frontend/src/components/ui/dialog-with-no-close.tsx b/src/frontend/src/components/ui/dialog-with-no-close.tsx
index 262dee67f..3c025bfd8 100644
--- a/src/frontend/src/components/ui/dialog-with-no-close.tsx
+++ b/src/frontend/src/components/ui/dialog-with-no-close.tsx
@@ -11,7 +11,7 @@ const DialogPortal = ({
...props
}: DialogPrimitive.DialogPortalProps) => (
-
+
{children}
@@ -25,7 +25,7 @@ const DialogOverlay = React.forwardRef<
(
-
+
{children}
@@ -26,7 +26,7 @@ const DialogOverlay = React.forwardRef<
(
diff --git a/src/frontend/src/components/ui/rename-label.tsx b/src/frontend/src/components/ui/rename-label.tsx
index 27a21056b..32107109a 100644
--- a/src/frontend/src/components/ui/rename-label.tsx
+++ b/src/frontend/src/components/ui/rename-label.tsx
@@ -60,7 +60,7 @@ export default function RenameLabel(props) {
ref={inputRef}
onInput={resizeInput}
className={cn(
- "nopan nodelete nodrag noundo nocopy rounded-md bg-transparent px-2 outline-ring hover:outline focus:border-none focus:outline active:outline",
+ "nopan nodelete nodrag noflow rounded-md bg-transparent px-2 outline-ring hover:outline focus:border-none focus:outline active:outline",
props.className,
)}
onBlur={() => {
diff --git a/src/frontend/src/components/ui/textarea.tsx b/src/frontend/src/components/ui/textarea.tsx
index c18d57cfc..10fcbcf56 100644
--- a/src/frontend/src/components/ui/textarea.tsx
+++ b/src/frontend/src/components/ui/textarea.tsx
@@ -9,7 +9,7 @@ const Textarea = React.forwardRef(
return (