diff options
author | Ajay <[email protected]> | 2022-10-17 09:25:11 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2022-10-17 09:25:11 -0400 |
commit | aec5845bced2443dea0bf36affd1aa64df18f36e (patch) | |
tree | e97ff14b7d8828523ff3d1f1d5b2dbb07048463d | |
parent | 5209c0ea04b6930a33683326788f1327829f0b02 (diff) | |
download | SponsorBlock-aec5845bced2443dea0bf36affd1aa64df18f36e.tar.gz SponsorBlock-aec5845bced2443dea0bf36affd1aa64df18f36e.zip |
Show import button for errors
-rw-r--r-- | src/popup.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/popup.ts b/src/popup.ts index ede826e2..400906a0 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -457,7 +457,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> { PageElements.issueReporterImportExport.classList.remove("hidden"); } else { PageElements.videoFound.innerHTML = chrome.i18n.getMessage("connectionError") + request.status; - PageElements.issueReporterImportExport.classList.add("hidden"); + PageElements.issueReporterImportExport.classList.remove("hidden"); } } |