Prechádzať zdrojové kódy

ux(dashboard): changed name of delete row to remove row, #6442

Torkel Ödegaard 9 rokov pred
rodič
commit
d0513d3a54

+ 2 - 2
public/app/features/dashboard/model.ts

@@ -172,8 +172,8 @@ export class DashboardModel {
     }
 
     appEvents.emit('confirm-modal', {
-      title: 'Delete',
-      text: 'Are you sure you want to delete this row?',
+      title: 'Remove Row',
+      text: 'Are you sure you want to remove this row?',
       icon: 'fa-trash',
       yesText: 'Delete',
       onConfirm: () => {

+ 1 - 1
public/app/features/dashboard/row/row.html

@@ -22,7 +22,7 @@
 		</li>
 		<li>
 			<a ng-click="ctrl.onMenuDeleteRow()">
-				<i class="fa fa-trash"></i> Delete row
+				<i class="fa fa-trash"></i> Remove row
 			</a>
 		</li>
 	</ul>