This is an automated email from the ASF dual-hosted git repository.
pearl11594 pushed a commit to branch show-configured-oobm
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/show-configured-oobm by this
push:
new d730c42d9f8 remove password display
d730c42d9f8 is described below
commit d730c42d9f8c236da38a91b10de6bf58ce1edfbc
Author: Pearl Dsilva <[email protected]>
AuthorDate: Fri Feb 28 12:14:28 2025 -0500
remove password display
---
ui/src/views/infra/ConfigureHostOOBM.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ui/src/views/infra/ConfigureHostOOBM.vue
b/ui/src/views/infra/ConfigureHostOOBM.vue
index 60712ce32e8..695568ac9b3 100644
--- a/ui/src/views/infra/ConfigureHostOOBM.vue
+++ b/ui/src/views/infra/ConfigureHostOOBM.vue
@@ -121,7 +121,8 @@ export default {
address: this.resource.outofbandmanagement.address || '',
port: this.resource.outofbandmanagement.port || '',
username: this.resource.outofbandmanagement.username || '',
- password: this.resource.outofbandmanagement.password || ''
+ password: '',
+ driver: this.resource.outofbandmanagement.driver || ''
})
this.rules = reactive({
address: [{ required: true, message:
this.$t('message.error.required.input') }],