You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2021/12/30 08:54:16 UTC

[cloudstack] branch 4.16 updated: fixes cannot add new port forwarding rules after auto select VM next time (#5690)

This is an automated email from the ASF dual-hosted git repository.

dahn pushed a commit to branch 4.16
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.16 by this push:
     new ae62e1d  fixes cannot add new port forwarding rules after auto select VM next time (#5690)
ae62e1d is described below

commit ae62e1dd5e0fc9560a22b2bff29faa8d5cef4fef
Author: Hoang Nguyen <ho...@unitech.vn>
AuthorDate: Thu Dec 30 15:53:51 2021 +0700

    fixes cannot add new port forwarding rules after auto select VM next time (#5690)
---
 ui/src/views/network/PortForwarding.vue | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ui/src/views/network/PortForwarding.vue b/ui/src/views/network/PortForwarding.vue
index 361708e..9eb6e52 100644
--- a/ui/src/views/network/PortForwarding.vue
+++ b/ui/src/views/network/PortForwarding.vue
@@ -331,7 +331,7 @@ export default {
   inject: ['parentFetchData', 'parentToggleLoading'],
   data () {
     return {
-      checked: true,
+      checked: false,
       selectedRowKeys: [],
       showGroupActionModal: false,
       selectedItems: [],
@@ -639,6 +639,7 @@ export default {
       this.addVmModalNicLoading = false
       this.showConfirmationAction = false
       this.nics = []
+      this.checked = false
       this.resetTagInputs()
     },
     openTagsModal (id) {