update feature flag

Signed-off-by: andy.lee <andy.lee@suse.com>
This commit is contained in:
andy.lee 2025-02-11 14:56:17 +08:00
parent 5f76da4629
commit fc09e030a0
No known key found for this signature in database
GPG Key ID: 10911689462678C7
2 changed files with 4 additions and 4 deletions

View File

@ -100,7 +100,7 @@ export default {
networkTypes() { networkTypes() {
const types = [L2VLAN]; const types = [L2VLAN];
if (this.unTaggedNetworkSettingEnabled) { if (this.untaggedNetworkSettingEnabled) {
types.push(UNTAGGED); types.push(UNTAGGED);
} }
@ -112,8 +112,8 @@ export default {
return docLink(DOC.STORAGE_NETWORK_EXAMPLE, version); return docLink(DOC.STORAGE_NETWORK_EXAMPLE, version);
}, },
unTaggedNetworkSettingEnabled() { untaggedNetworkSettingEnabled() {
return this.$store.getters['harvester-common/getFeatureEnabled']('unTaggedNetworkSetting'); return this.$store.getters['harvester-common/getFeatureEnabled']('untaggedNetworkSetting');
}, },
clusterNetworkOptions() { clusterNetworkOptions() {

View File

@ -49,7 +49,7 @@ const featuresV142 = [
const featuresV150 = [ const featuresV150 = [
...featuresV142, ...featuresV142,
'tpmPersistentState', 'tpmPersistentState',
'unTaggedNetworkSetting' 'untaggedNetworkSetting'
]; ];
export const RELEASE_FEATURES = { export const RELEASE_FEATURES = {