diff options
author | Devaev Maxim <[email protected]> | 2021-02-16 01:06:53 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-02-16 01:06:53 +0300 |
commit | ecdc65ceb33d3c4f7809b9c7879a717be09771c2 (patch) | |
tree | 84966851e37dd2af58cf8411bce911a3a7eb37ba /web | |
parent | 786aa1d19bee0e262305bbb4afb6dd3194a9dbb6 (diff) |
Fixed pikvm/pikvm#189: verbose removing message
Diffstat (limited to 'web')
-rw-r--r-- | web/share/js/kvm/msd.js | 2 |
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) { |