Skip to content

Commit

Permalink
make dialog height dynamic
Browse files Browse the repository at this point in the history
-
Ticket: SUITEDEV-26331
  • Loading branch information
hawser86 committed Mar 5, 2021
1 parent fe5c7ec commit bde3743
Showing 1 changed file with 6 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,25 +1,15 @@
<e-dialog
:opened="opened"
v-on="{ 'dialog.close': close }"
headline="Save changes"
headline="Do you want to save the following changes?"
width="90%"
>
<div class="e-dialog__content">
<div>The following fields have been changed:</div>

<div class="e-margin-vertical-m" style="height: 250px">
<div class="e-scrollable">
<div class="e-scrollable__content">
<div
v-for="key in keysOfChangedFields"
v-html="difference(key)"
>
</div>
</div>
</div>
<div style="position: relative">
<div
v-for="key in keysOfChangedFields"
v-html="difference(key)"
>
</div>

<div>Are you sure you want to save?</div>
</div>

<div class="e-dialog__footer">
Expand Down

0 comments on commit bde3743

Please sign in to comment.