-
Notifications
You must be signed in to change notification settings - Fork 13k
fix(plan): prevent plan truncation in approval dialog by supporting unconstrained heights #21037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 13 commits
128dc99
36b06f7
0f88ddb
ec2d0a8
e5d9719
c397c72
633ef48
05b50f4
f5c0253
7490f28
d879da6
8cfc314
55cc847
0a6fb84
53a3fc9
5f0464d
c387024
e37954a
4216232
bd7aa56
a27a134
457ca8e
0aab89e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -162,6 +162,8 @@ export interface Question { | |
| multiSelect?: boolean; | ||
| /** Placeholder hint text. For type='text', shown in the input field. For type='choice', shown in the "Other" custom input. */ | ||
| placeholder?: string; | ||
| /** Allow the question to consume more vertical space instead of being strictly capped. */ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this isn't needed
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed this
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this still need to get removed? I see in the latest push this was brought back |
||
| unconstrainedHeight?: boolean; | ||
| } | ||
|
|
||
| export interface AskUserRequest { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.