Skip to content

Commit 15bcc41

Browse files
arybak1gtmills
authored andcommitted
Fix toast message for VM Legacy successful mount
Add new toast message string serverConnectionEstablished for succesfully mounted image in Legacy mode. Previously serverClosedSuccessfully toast was showed. Tested: Verified that Server connection established toast message shows in webui after mounting image in legacy mode. Signed-off-by: Alicja Rybak <[email protected]> Change-Id: I79b8bc3243ecc1a29a28f2441d499454747676c2
1 parent bfce3de commit 15bcc41

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/locales/en-US.json

+1
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,7 @@
806806
"errorReadingFile": "Error reading file. Closing server.",
807807
"errorUnmounting": "Error unmounting",
808808
"serverRunning": "Server running",
809+
"serverConnectionEstablished": "Server connection established",
809810
"serverClosedSuccessfully": "Server closed successfully",
810811
"serverClosedWithErrors": "Server closed with errors"
811812
}

src/views/Control/VirtualMedia/VirtualMedia.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export default {
179179
})
180180
.then(() => {
181181
this.successToast(
182-
this.$t('pageVirtualMedia.toast.serverClosedSuccessfully')
182+
this.$t('pageVirtualMedia.toast.serverConnectionEstablished')
183183
);
184184
connectionData.isActive = true;
185185
})

0 commit comments

Comments
 (0)