This commit is contained in:
2021-04-19 14:31:24 +00:00
parent e8de1f5409
commit 3ac2fff6d0
4 changed files with 25 additions and 13 deletions

View File

@@ -1029,5 +1029,17 @@ export default {
setTimeout(function() {
vm.$router.go(-1);
}, 2000);
},
////////////////////////////////////////
// Standard data table row error class
//
tableRowErrorClass() {
return "font-weight-black font-italic error--text ";
},
////////////////////////////////////////
// Standard data table deleted class
//
tableRowDeletedClass() {
return "text-decoration-line-through ";
}
};