feat(exclusion): hide section with type exclusion

This commit is contained in:
divocatt
2026-05-29 16:53:47 +03:00
parent 1365febaa4
commit 6e7b8a6be2
3 changed files with 10 additions and 3 deletions

View File

@@ -716,7 +716,7 @@ async function getDashboardSections() {
})
);
const data = configSections.filter(
(section) => section.connection_type !== "block" && section[".type"] !== "settings"
(section) => section.connection_type !== "block" && section.connection_type !== "exclusion" && section[".type"] !== "settings"
).map((section) => {
if (section.connection_type === "proxy") {
if (section.proxy_config_type === "url") {