diff options
Diffstat (limited to 'source/github-helpers/load-details-menu.ts')
| -rw-r--r-- | source/github-helpers/load-details-menu.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/github-helpers/load-details-menu.ts b/source/github-helpers/load-details-menu.ts index f3db3d42..13158676 100644 --- a/source/github-helpers/load-details-menu.ts +++ b/source/github-helpers/load-details-menu.ts @@ -1,8 +1,8 @@ -import select from 'select-dom'; +import {$} from 'select-dom'; import oneEvent from 'one-event'; export default async function loadDetailsMenu(detailsMenu: HTMLElement): Promise<void> { - const fragment = select('.js-comment-header-actions-deferred-include-fragment', detailsMenu); + const fragment = $('.js-comment-header-actions-deferred-include-fragment', detailsMenu); if (!fragment) { return; } |
