We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c95df3 commit 8cb9238Copy full SHA for 8cb9238
src/dialog/overflow-menu/overflow-menu-pane.component.ts
@@ -81,6 +81,6 @@ export class OverflowMenuPane extends Dialog {
81
private listItems() {
82
const buttonClass = ".bx--overflow-menu-options__btn";
83
const disabledClass = ".bx--overflow-menu-options__option--disabled";
84
- return Array.prototype.slice.call(this.dialog.nativeElement.querySelectorAll(`${buttonClass}:not(${disabledClass})`));
+ return Array.from<any>(this.dialog.nativeElement.querySelectorAll(`${buttonClass}:not(${disabledClass})`));
85
}
86
0 commit comments