diff --git a/src/components/standalone/openvpn_rw/CreateOrEditRWServerDrawer.vue b/src/components/standalone/openvpn_rw/CreateOrEditRWServerDrawer.vue index 8b8a44b9e..231b292bf 100644 --- a/src/components/standalone/openvpn_rw/CreateOrEditRWServerDrawer.vue +++ b/src/components/standalone/openvpn_rw/CreateOrEditRWServerDrawer.vue @@ -115,13 +115,13 @@ const compressionOptions = [ ] const modeOptions = [ - { - id: 'bridged', - label: t('standalone.openvpn_rw.bridged') - }, { id: 'routed', label: t('standalone.openvpn_rw.routed') + }, + { + id: 'bridged', + label: t('standalone.openvpn_rw.bridged') } ] diff --git a/src/components/standalone/openvpn_tunnel/CreateOrEditTunnelDrawer.vue b/src/components/standalone/openvpn_tunnel/CreateOrEditTunnelDrawer.vue index da9dd8b2f..55f8df0ed 100644 --- a/src/components/standalone/openvpn_tunnel/CreateOrEditTunnelDrawer.vue +++ b/src/components/standalone/openvpn_tunnel/CreateOrEditTunnelDrawer.vue @@ -175,13 +175,13 @@ const authenticationOptions = [ ] const modeOptions = [ - { - id: 'bridged', - label: t('standalone.openvpn_tunnel.bridged') - }, { id: 'routed', label: t('standalone.openvpn_tunnel.routed') + }, + { + id: 'bridged', + label: t('standalone.openvpn_tunnel.bridged') } ] @@ -329,7 +329,7 @@ async function resetForm() { username.value = '' password.value = '' certificate.value = '' - mode.value = 'bridged' + mode.value = 'routed' } try {