mirror of
https://github.com/hamburghammer/gohttpserver.git
synced 2025-03-14 15:25:56 +01:00
fix bug
This commit is contained in:
parent
905412e91b
commit
f4bdbeee73
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ var vm = new Vue({
|
|||
deletePathConfirm: function (f, e) {
|
||||
e.preventDefault();
|
||||
if (!e.altKey) { // skip confirm when alt pressed
|
||||
if (!window.confirm("Delete " + location.pathname + f.name + " ?")) {
|
||||
if (!window.confirm("Delete " + location.pathname + "/" + f.name + " ?")) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue