feat(extra): hide block & exclusion from download_lists_via_proxy_section

This commit is contained in:
divocatt
2026-05-29 17:03:44 +03:00
parent daef80b7b8
commit 4146804e5a

View File

@@ -309,11 +309,9 @@ function createSettingsContent(section) {
this.keylist = [];
this.vallist = [];
console.log('sections', {sections})
for (const secName in sections) {
const sec = sections[secName];
if (sec[".type"] === "section") {
if (sec[".type"] === "section" && sec['connection_type'] !== 'block' && sec['connection_type'] !== 'exclusion') {
this.keylist.push(secName);
this.vallist.push(secName);
}