Skip to content

Commit

Permalink
#444 - Make the dialog body scrollable.
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed Nov 26, 2022
1 parent 59e3411 commit 354ec23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Money.Blazor.Host/Components/Bootstrap/Modal.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<form @onsubmit="@OnFormSubmit" @onsubmit:preventDefault="true">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">
<h4 class="modal-title text-truncate">
@if (!String.IsNullOrEmpty(TitleIcon))
{
<Icon Identifier="@TitleIcon" class="mr-1" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@inherits ModalDialog

<Modal @ref="Modal" Title="Create a new Expense Template">
<Modal @ref="Modal" Title="Create a new Expense Template" IsOverflow="true">
<ChildContent>
<Validation ErrorMessages="@ErrorMessages" />
<div class="form-row">
Expand Down

0 comments on commit 354ec23

Please sign in to comment.