Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mb_multi_external_links/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async function run(windowInstance: Window): Promise<void> {
// for its existence enables us to skip attempting to find the link input on
// edit pages that don't have external links, without having to exclude
// specific pages.
const editorContainer = qsMaybe<HTMLElement>('#external-links-editor-container', windowInstance.document);
const editorContainer = qsMaybe<HTMLElement>('.external-links-editor-container', windowInstance.document);
if (!editorContainer) return;

const editor = await ExternalLinksEditor.create(windowInstance);
Expand Down