Skip to content

Commit

Permalink
Merge pull request #19766 from akeneo/PIM-11003
Browse files Browse the repository at this point in the history
PIM-11003: Fix scrolling on Product edit form attributes
  • Loading branch information
cemorin committed May 26, 2023
2 parents bf3ac90 + f677d42 commit 151dcf5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -81,6 +81,7 @@
- PIM-11001: Fix code filter on attributes grid with special character
- PIM-11002: Fix bad context locale used in DQI dashboard families widget
- PIM-10997: Update error message when trying to delete role with linked users or connections
- PIM-11003: Fix scrolling on Product edit form attributes

## Improvements

Expand Down
Expand Up @@ -95,7 +95,7 @@ define([
}

$('#container').empty();
var $view = $('<div class="view"></div>').appendTo($('#container'));
var $view = $('<div class="view-global"></div>').appendTo($('#container'));

if (controller.feature && !FeatureFlags.isEnabled(controller.feature)) {
this.hideLoadingMask();
Expand Down
Expand Up @@ -156,6 +156,9 @@
/* Temporary block */
.view {
height: 100%;
}
.view-global {
height: 100%;
overflow: auto;
}
.app {
Expand Down

0 comments on commit 151dcf5

Please sign in to comment.