1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-03 17:49:39 +02:00

Fix typo breaking the collapsing of placeholders

Related issue:
- https://github.com/gorhill/uBlock/issues/2848
This commit is contained in:
Raymond Hill 2020-10-05 14:20:43 -04:00
parent fc0b5e4ef1
commit aff75b3527
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1166,7 +1166,7 @@ vAPI.injectScriptlet = function(doc, text) {
if ( collapseToken === undefined ) {
collapseToken = vAPI.randomToken();
vAPI.userStylesheet.add(
`[${collapseToken}]\ndisplay:none!important;}`,
`[${collapseToken}]\n{display:none!important;}`,
true
);
}