Commit 09d1f4f5 by Johannes Zellner

Do not show errors on dialog dismiss

1 parent 25c2c5de
Showing with 3 additions and 9 deletions
......@@ -275,9 +275,7 @@ var app = new Vue({
refresh();
});
}).catch(function () {
console.log('delete error:', arguments);
});
}).catch(function () {});
},
onRename: function (entry) {
var that = this;
......@@ -294,9 +292,7 @@ var app = new Vue({
refresh();
});
}).catch(function (error) {
that.$message.error(error.message);
});
}).catch(function () {});
},
onNewFolder: function () {
var that = this;
......@@ -314,9 +310,7 @@ var app = new Vue({
refresh();
});
}).catch(function (error) {
that.$message.error(error.message);
});
}).catch(function () {});
},
prettyDate: function (row, column, cellValue, index) {
var date = new Date(cellValue),
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!