summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirankumarb07 <kirankumarb@ami.com>2023-02-07 10:38:52 +0300
committerKiran Kumar Ballapalli <kirankumarb@ami.com>2023-02-21 15:53:26 +0300
commitb63e9d9a70dabc4c9a7038f7727fca6bd17d940a (patch)
tree160d64976031b3e1786bf5e26ae1e1ea2365ceee
parentd8c71c00c2e98703b6e33ca1f9c87966dfb21805 (diff)
downloadwebui-vue-b63e9d9a70dabc4c9a7038f7727fca6bd17d940a.tar.xz
SOL console opened in a new tab shows an error
When the SOL console is opened in a new window, the status of the SOL connection is displayed as "disconnected." And the error message is displaying, "The system must be powered on to connect." I have added this patch to get the systems API call to get the server status when SOL is opened in a new window. Change-Id: I971947fea0980605d400d46bb1e18b2d20164602 Signed-off-by: Kirankumar Ballapalli <kirankumarb@ami.com>
-rw-r--r--src/views/Operations/SerialOverLan/SerialOverLanConsole.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue b/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
index 82637a42..767fd8bd 100644
--- a/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
+++ b/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
@@ -81,7 +81,7 @@ export default {
},
},
created() {
- this.$store.dispatch('global/getServerStatus');
+ this.$store.dispatch('global/getSystemInfo');
},
mounted() {
this.openTerminal();