4
0
Эх сурвалжийг харах

Fix menu warning (#2353)

confirm is only for labels, not for feeds
Alexandre Alapetite 7 жил өмнө
parent
commit
1b7cf6b035
1 өөрчлөгдсөн 4 нэмэгдсэн , 1 устгасан
  1. 4 1
      p/scripts/main.js

+ 4 - 1
p/scripts/main.js

@@ -692,7 +692,10 @@ function init_column_categories() {
 				a.href = '#dropdown-' + id;
 				div.querySelector('.dropdown-target').id = 'dropdown-' + id;
 				div.insertAdjacentHTML('beforeend', template);
-				div.querySelector('button.confirm').disabled = false;
+				const b = div.querySelector('button.confirm');
+				if (b) {
+					b.disabled = false;
+				}
 			} else if (getComputedStyle(dropdownMenu).display === 'none') {
 				const id2 = div.closest('.item').id.substr(2);
 				a.href = '#dropdown-' + id2;