1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-03-17 21:18:19 +02:00

Add event.preventDefault()

This commit is contained in:
Ralph Slooten 2022-10-08 23:32:40 +13:00
parent 46dbde04ae
commit 906a697542

View File

@ -482,7 +482,8 @@ export default {
return this.selected.indexOf(id) != -1;
},
loadInfo: function() {
loadInfo: function(e) {
e.preventDefault();
let self = this;
self.get('api/v1/info', false, function(response) {
self.appInfo = response.data;