diff --git a/desktop/angular/src/app/pages/dashboard/feature-card/feature-card.component.ts b/desktop/angular/src/app/pages/dashboard/feature-card/feature-card.component.ts
index 8355a3ba..41f56591 100644
--- a/desktop/angular/src/app/pages/dashboard/feature-card/feature-card.component.ts
+++ b/desktop/angular/src/app/pages/dashboard/feature-card/feature-card.component.ts
@@ -73,10 +73,10 @@ export class FeatureCardComponent implements OnChanges, OnDestroy {
}
let key: string | undefined;
- if (this.feature?.ConfigScope) {
- key = 'config:' + this.feature?.ConfigScope;
+ if (this.feature?.ConfigKey) {
+ key = this.feature?.ConfigKey;
} else {
- key = this.feature?.ConfigKey;
+ key = 'config:' + this.feature?.ConfigScope;
}
if (!key) {
diff --git a/spn/access/features.go b/spn/access/features.go
index a26805e1..a47e2ebd 100644
--- a/spn/access/features.go
+++ b/spn/access/features.go
@@ -92,15 +92,19 @@ var (
`,
},
{
- Name: "Safing Support",
- ID: string(account.FeatureSafingSupport),
- RequiredFeatureID: account.FeatureSafingSupport,
- InPackage: packagePlus,
+ Name: "Split Tunneling",
+ ID: "splittun",
+ ConfigKey: "splittun/enable",
+ ConfigScope: "splittun/",
+ InPackage: packageFree,
icon: `
-
+
`,
},
{