make policy tasks sort ascending
This commit is contained in:
		@@ -254,7 +254,7 @@ export default {
 | 
				
			|||||||
      pagination: {
 | 
					      pagination: {
 | 
				
			||||||
        rowsPerPage: 0,
 | 
					        rowsPerPage: 0,
 | 
				
			||||||
        sortBy: "name",
 | 
					        sortBy: "name",
 | 
				
			||||||
        descending: true,
 | 
					        descending: false,
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
@@ -321,7 +321,7 @@ export default {
 | 
				
			|||||||
    runTask(task) {
 | 
					    runTask(task) {
 | 
				
			||||||
      if (!task.enabled) {
 | 
					      if (!task.enabled) {
 | 
				
			||||||
        this.notifyError(
 | 
					        this.notifyError(
 | 
				
			||||||
          "Task cannot be run when it's disabled. Enable it first."
 | 
					          "Task cannot be run when it's disabled. Enable it first.",
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
        return;
 | 
					        return;
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user