Skip to content

Commit

Permalink
fix(container): Add max height and overflow behavior to menu component (
Browse files Browse the repository at this point in the history
  • Loading branch information
zJaaal authored and dsolistorres committed Nov 6, 2023
1 parent 5ffd0be commit 2241d45
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@
<ng-template #contentTypesLoader>
<p-skeleton borderRadius="0px" width="4rem" height="3.9rem"></p-skeleton>
</ng-template>
<p-menu #actionsMenu [popup]="true" [model]="menuItems" appendTo="body"></p-menu>
<p-menu
#actionsMenu
[popup]="true"
[model]="menuItems"
[style]="{
'max-height': '300px',
overflow: 'auto'
}"
appendTo="body"></p-menu>
</ng-template>
<ng-template pTemplate="content">
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,5 +364,10 @@ describe('DotContentEditorComponent', () => {
const loader = de.query(By.css('p-skeleton'));
expect(loader).toBeDefined();
});

it('should have a menu with max height in 300px and overflow auto', () => {
expect(menu.style['max-height']).toBe('300px');
expect(menu.style.overflow).toBe('auto');
});
});
});

0 comments on commit 2241d45

Please sign in to comment.