Просмотр исходного кода

fix(spelling): capitalize text

Torkel Ödegaard 10 лет назад
Родитель
Сommit
74da5a610c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      public/app/features/dashboard/rowCtrl.js

+ 1 - 1
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);
         }