mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 05:01:43 +00:00
fix: trunk input field is missing when creating L2VlanTrunkNetwork (#570)
Signed-off-by: Andy Lee <andy.lee@suse.com>
This commit is contained in:
parent
e6dd8d6771
commit
88cd302ce4
@ -174,7 +174,7 @@ export default {
|
||||
return this.value.vlanType === L2TRUNK_VLAN && this.l2VlanMode === TRUNK;
|
||||
}
|
||||
|
||||
return this.type === L2TRUNK_VLAN && this.l2VlanMode === TRUNK;
|
||||
return this.type === L2TRUNK_VLAN || (this.l2VlanMode === TRUNK && this.type === L2VLAN);
|
||||
},
|
||||
|
||||
isL2VlanAccessMode() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user