Skip to content

Commit

Permalink
fix: Dialog sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
GZolla committed Sep 17, 2024
1 parent 7bbd7da commit c16030b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/dialog/dialog-fullscreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class DialogFullscreen extends LocalizeCoreElement(AsyncContainerMixin(DialogMix

willUpdate(changedProperties) {
super.willUpdate(changedProperties);
if (changedProperties.has('width')) this._width = Math.max(1170, this.width);
this._width = Math.max(1170, this.width);
}

_abort() {
Expand Down

0 comments on commit c16030b

Please sign in to comment.