diff options
Diffstat (limited to 'src/popup.ts')
-rw-r--r-- | src/popup.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/popup.ts b/src/popup.ts index df47d817..cbf92917 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -180,7 +180,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> { PageElements.sponsorTimesViewsDisplayEndWord.innerText = chrome.i18n.getMessage("Segment"); } PageElements.sponsorTimesViewsDisplay.innerText = viewCount.toLocaleString(); - PageElements.sponsorTimesViewsContainer.style.display = "unset"; + PageElements.sponsorTimesViewsContainer.style.display = "block"; } showDonateWidget(viewCount); @@ -212,7 +212,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> { } PageElements.sponsorTimesSkipsDoneDisplay.innerText = Config.config.skipCount.toLocaleString(); - PageElements.sponsorTimesSkipsDoneContainer.style.display = "unset"; + PageElements.sponsorTimesSkipsDoneContainer.style.display = "block"; } //get the amount of time this user has saved. |