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.
2 parents 47ea8cd + 61e78eb commit 85e3d3bCopy full SHA for 85e3d3b
src/popup.ts
@@ -708,8 +708,9 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
708
&& [SponsorHideType.Visible, SponsorHideType.Hidden].includes(downloadedTimes[i].hidden)) {
709
voteButtonsContainer.appendChild(hideButton);
710
}
711
- voteButtonsContainer.appendChild(skipButton);
712
-
+ if (downloadedTimes[i].actionType !== ActionType.Full) {
+ voteButtonsContainer.appendChild(skipButton);
713
+ }
714
715
// Will contain request status
716
const voteStatusContainer = document.createElement("div");
0 commit comments