3
0

Disable sorting by name for reporter, workflow list

Currently, can't sort/filter using names because they are under meta, and we haven't (yet) implemented filters to use nested JSON properties.
This commit is contained in:
Vivek Patel
2023-04-13 21:03:51 +05:30
committed by Jože Fortun
parent b1ee1b8849
commit 9492784220
2 changed files with 3 additions and 3 deletions

View File

@@ -146,7 +146,7 @@ export default {
{
key: 'name',
label: this.$t('columns.name'),
sortable: true,
sortable: false,
tdClass: 'text-nowrap',
},
{

View File

@@ -211,9 +211,9 @@ export default {
tableFields () {
return [
{
key: 'handle',
key: 'name',
label: this.$t('general:columns.name'),
sortable: true,
sortable: false,
tdClass: 'text-nowrap',
},
{