From ef5fad8d6a8cb1c0d356d2b0956f247ba95d9cb5 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Wed, 15 Apr 2026 16:57:40 +0100 Subject: [PATCH] BaseDialog: fix comment (#33159) This comment was a half-truth --- apps/web/src/components/views/dialogs/BaseDialog.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/web/src/components/views/dialogs/BaseDialog.tsx b/apps/web/src/components/views/dialogs/BaseDialog.tsx index 4c08c80560..22cbbedfaa 100644 --- a/apps/web/src/components/views/dialogs/BaseDialog.tsx +++ b/apps/web/src/components/views/dialogs/BaseDialog.tsx @@ -50,9 +50,13 @@ interface IProps { // CSS class to apply to dialog div "className"?: string; - // if true, dialog container is 60% of the viewport width. Otherwise, - // the container will have no fixed size, allowing its contents to - // determine its size. Default: true. + /** + * If true, dialog container is between 60% of the viewport width and 704 pixels (depending on screen size and dialog contents). + * + * Otherwise, the container will have no fixed width, allowing its contents to determine its size. + * + * Default: true. + */ "fixedWidth"?: boolean; // To be displayed at the top of the dialog. Even above the title.