Skip to content

Commit

Permalink
Merge pull request #8594 from infor-design/8553-cap-additional-padding
Browse files Browse the repository at this point in the history
8553 - CAP Additional Padding
  • Loading branch information
ericangeles committed Apr 8, 2024
2 parents c68b80e + 9a1d73e commit 7fec568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

## v4.95.0 Fixes

- `[Contextual Action Panel]` Fixed added padding on contextual action panel. ([#8553](https://github.com/infor-design/enterprise/issues/8553))
- `[Forms]` Fixed fileupload layout in compact form. ([#8537](https://github.com/infor-design/enterprise/issues/8537))

## v4.94.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ ContextualActionPanel.prototype = {
}

if (!isIframe) {
children.wrapAll('<div class="modal-content"></div>').wrapAll(`<div class="modal-body ${this.settings.detailRefId !== null ? 'padding-x-16 has-back-button' : ''}"></div>`);
children.wrapAll('<div class="modal-content"></div>').wrapAll(`<div class="modal-body ${this.settings.detailRefId !== undefined ? 'padding-x-16 has-back-button' : ''}"></div>`);
this.panel.addClass('modal');
}
}
Expand Down

0 comments on commit 7fec568

Please sign in to comment.