From 5969396020efa5335f37fbb7343788632e104c88 Mon Sep 17 00:00:00 2001 From: Kiran Niranjan Date: Fri, 13 Dec 2024 15:51:43 +0530 Subject: [PATCH] SDA-4682 - increase child window minimum size (#2237) --- src/app/child-window-handler.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/child-window-handler.ts b/src/app/child-window-handler.ts index b126fc964..180a55649 100644 --- a/src/app/child-window-handler.ts +++ b/src/app/child-window-handler.ts @@ -40,8 +40,8 @@ import { const DEFAULT_POP_OUT_WIDTH = 300; const DEFAULT_POP_OUT_HEIGHT = 600; -const MIN_WIDTH = 300; -const MIN_HEIGHT = 300; +const MIN_WIDTH = 400; +const MIN_HEIGHT = 400; const CHILD_WINDOW_EVENTS = ['enter-full-screen', 'leave-full-screen'];