From 22640aa9b263a2a378ed367f64175c916e272d5d Mon Sep 17 00:00:00 2001 From: smit95tpatel Date: Mon, 20 Dec 2021 16:15:45 +0530 Subject: [PATCH] changed delete downtime btn text --- frontend/src/components/Dashboard/DowntimesList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Dashboard/DowntimesList.vue b/frontend/src/components/Dashboard/DowntimesList.vue index cb768657..f7dbddac 100644 --- a/frontend/src/components/Dashboard/DowntimesList.vue +++ b/frontend/src/components/Dashboard/DowntimesList.vue @@ -159,10 +159,10 @@ export default { handleDowntimeDelete: async function (downtime) { const modal = { visible: true, - title: 'Delete Service', + title: 'Delete Downtime', body: `Are you sure you want to delete the downtime for service ${downtime.service.name}?`, btnColor: 'btn-danger', - btnText: 'Delete Service', + btnText: 'Delete Downtime', func: () => this.delete(downtime.id), }; this.$store.commit('setModal', modal);