Skip to content

Commit

Permalink
fix(widgets): increase z-index to fix mouse events (#8890)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgervang authored May 21, 2024
1 parent eebcdd4 commit 87ae695
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/core/src/lib/widget-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ export class WidgetManager {
container = document.createElement('div');
container.className = placement;
container.style.position = 'absolute';
container.style.zIndex = '2';
Object.assign(container.style, PLACEMENTS[placement]);
viewContainer.append(container);
}
Expand Down

0 comments on commit 87ae695

Please sign in to comment.