summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2021-02-16 01:06:53 +0300
committerDevaev Maxim <[email protected]>2021-02-16 01:06:53 +0300
commitecdc65ceb33d3c4f7809b9c7879a717be09771c2 (patch)
tree84966851e37dd2af58cf8411bce911a3a7eb37ba /web
parent786aa1d19bee0e262305bbb4afb6dd3194a9dbb6 (diff)
Fixed pikvm/pikvm#189: verbose removing message
Diffstat (limited to 'web')
-rw-r--r--web/share/js/kvm/msd.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/kvm/msd.js b/web/share/js/kvm/msd.js
index b7abb240..68548fdc 100644
--- a/web/share/js/kvm/msd.js
+++ b/web/share/js/kvm/msd.js
@@ -71,7 +71,7 @@ export function Msd() {
var __clickRemoveImageButton = function() {
let name = $("msd-image-selector").value;
- wm.confirm(`Are you sure you want to remove<br>the image <b>${name}</b>?`).then(function(ok) {
+ wm.confirm(`Are you sure you want to remove the image<br><b>${name}</b> from Pi-KVM?`).then(function(ok) {
if (ok) {
let http = tools.makeRequest("POST", `/api/msd/remove?image=${name}`, function() {
if (http.readyState === 4) {