This commit is contained in:
Marcel Pociot
2020-05-04 16:42:57 +02:00
parent 3d94ee6900
commit 0dd8518c31
3 changed files with 11 additions and 10 deletions

View File

@@ -407,7 +407,7 @@
this.activeTab = tab;
},
clearLogs: function() {
fetch('/logs/clear');
fetch('/api/logs/clear');
this.currentLog = null;
},
setLog: function (log) {
@@ -421,7 +421,7 @@
this.view = view;
},
replay: function (log) {
fetch('/replay/' + log.id);
fetch('/api/replay/' + log.id);
},
connect: function () {
let conn = new ReconnectingWebSocket(`ws://${window.location.hostname}:${window.location.port}/socket`);
@@ -431,7 +431,7 @@
};
},
loadLogs: function (log) {
fetch('/logs')
fetch('/api/logs')
.then((response) => {
return response.json();
})