Skip to content

Commit

Permalink
fix(popover): fixed popover container attribute
Browse files Browse the repository at this point in the history
Refs: #352
  • Loading branch information
AntoninoBonanno authored and astagi committed Jul 12, 2024
1 parent 3070d04 commit 6327e76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class ItPopoverDirective implements AfterViewInit, OnDestroy {
*/
@Input() set popoverContainer(container: 'body' | string | undefined) {
if (container) {
this.element.setAttribute('data-container', container);
this.element.setAttribute('data-bs-container', container);
}
}

Expand Down

0 comments on commit 6327e76

Please sign in to comment.