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 and donmccurdy committed May 23, 2024
1 parent b64aa17 commit 4ab4098
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 4ab4098

Please sign in to comment.