diff --git a/frontend/src/API.js b/frontend/src/API.js index b1c9c3ba..138ffdc7 100644 --- a/frontend/src/API.js +++ b/frontend/src/API.js @@ -53,7 +53,7 @@ class Api { } async service_failures(id, start, end, limit = 999, offset = 0) { - return axios.get('/api/services/' + id + '/failures?start=' + start + '&end=' + end + '&limit=' + limit).then(response => (response.data)) + return axios.get('/api/services/' + id + '/failures?start=' + start + '&end=' + end + '&limit=' + limit+ '&offset=' + offset).then(response => (response.data)) } async service_delete(id) { diff --git a/frontend/src/components/Index/Group.vue b/frontend/src/components/Index/Group.vue index 483fce3c..4d03a804 100644 --- a/frontend/src/components/Index/Group.vue +++ b/frontend/src/components/Index/Group.vue @@ -8,6 +8,7 @@ {{service.online ? "ONLINE" : "OFFLINE"}} + diff --git a/frontend/src/components/Service/ServiceFailures.vue b/frontend/src/components/Service/ServiceFailures.vue index 964934f4..53ee9434 100644 --- a/frontend/src/components/Service/ServiceFailures.vue +++ b/frontend/src/components/Service/ServiceFailures.vue @@ -9,19 +9,19 @@

{{failure.issue}}

-