We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba7b328 + 6459ce3 commit bb02b1eCopy full SHA for bb02b1e
src/BootstrapBlazor/Components/Dialog/Dialog.razor.cs
@@ -166,6 +166,11 @@ private async Task Show(DialogOption option)
166
167
private static RenderFragment RenderDialog(int index, Dictionary<string, object> parameter) => builder =>
168
{
169
+ if (index > 0)
170
+ {
171
+ parameter[nameof(ModalDialog.IsScrolling)] = true;
172
+ }
173
+
174
builder.OpenComponent<ModalDialog>(100 + index);
175
builder.AddMultipleAttributes(101 + index, parameter);
176
builder.SetKey(parameter);
0 commit comments