From 74da5a610c2de358d755c61fda82e5986ef59833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 2 Sep 2015 13:20:00 +0200 Subject: [PATCH] fix(spelling): capitalize text --- public/app/features/dashboard/rowCtrl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/dashboard/rowCtrl.js b/public/app/features/dashboard/rowCtrl.js index 58005dc827d..6839feb8f3b 100644 --- a/public/app/features/dashboard/rowCtrl.js +++ b/public/app/features/dashboard/rowCtrl.js @@ -46,7 +46,7 @@ function (angular, app, _, config) { $scope.appEvent('confirm-modal', { title: 'Are you sure you want to delete this row?', icon: 'fa-trash', - yesText: 'delete', + yesText: 'Delete', onConfirm: function() { $scope.dashboard.rows = _.without($scope.dashboard.rows, $scope.row); }