fix(spelling): capitalize text

This commit is contained in:
Torkel Ödegaard
2015-09-02 13:20:19 +02:00
parent d56e7787f2
commit 74da5a610c
+1 -1
View File
@@ -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);
}