BaseDialog: fix comment (#33159)

This comment was a half-truth
This commit is contained in:
Richard van der Hoff 2026-04-15 16:57:40 +01:00 committed by GitHub
parent 93ab87c4a1
commit ef5fad8d6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.