From 695c28d4f8664940ad1847c7f3ae39841325d346 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Wed, 7 Nov 2018 16:06:27 +1300 Subject: [PATCH] fix(host): fix a typo in job history clear notification --- .../datatables/host-jobs-datatable/jobsDatatableController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/docker/components/datatables/host-jobs-datatable/jobsDatatableController.js b/app/docker/components/datatables/host-jobs-datatable/jobsDatatableController.js index 1a02da763..11be51be5 100644 --- a/app/docker/components/datatables/host-jobs-datatable/jobsDatatableController.js +++ b/app/docker/components/datatables/host-jobs-datatable/jobsDatatableController.js @@ -107,7 +107,7 @@ angular.module('portainer.docker') return $q.when(); } ContainerService.prune({ label: ['io.portainer.job.endpoint'] }).then(function success() { - Notifications.success('Success', 'Job hisotry cleared'); + Notifications.success('Success', 'Job history cleared'); $state.reload(); }).catch(function error(err) { Notifications.error('Failure', err.message, 'Unable to clear job history');