1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 08:37:11 +02:00

Fix class name

This commit is contained in:
Raymond Hill 2023-05-14 20:18:32 -04:00
parent d3da121892
commit 5ba3055bc7
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -544,7 +544,7 @@ const selectFilterLists = async ( ) => {
const textarea = qs$('#lists .listEntry[data-role="import"].expanded textarea');
const toImport = textarea !== null && textarea.value.trim() || '';
if ( textarea !== null ) {
dom.cl.remove(textarea.closest('expandable'), 'expanded');
dom.cl.remove(textarea.closest('.expandable'), 'expanded');
textarea.value = '';
}