Skip to content

Commit

Permalink
red-fix-gazelle-snatched: Fix left-hand side operator chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
euamotubaina committed Dec 19, 2024
1 parent 0a23375 commit deea370
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions red-fix-gazelle-snatched.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name RED: Fix Gazelle Snatched
// @namespace github.com/euamotubaina
// @version 2024-12-19_01
// @version 2024-12-19_02
// @description Fix Gazelle Snatched
// @author euamotubaina
// @grant none
Expand All @@ -23,6 +23,8 @@
gtLinks.style.color = gtLinks.style.color;
// make link separators in torrent_actions_buttons visible
const taSep = [...sSheet.cssRules].find(rule => rule.selectorText == '.group_torrent td:first-of-type span');
taSep?.style.visibility = '';
if (taSep) {
taSep.style.visibility = '';
}
}
})();

0 comments on commit deea370

Please sign in to comment.