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
1 changed files with 1 additions and 1 deletions

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 = '';
}