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:
@@ -146,7 +146,7 @@ export default {
|
||||
{
|
||||
key: 'name',
|
||||
label: this.$t('columns.name'),
|
||||
sortable: true,
|
||||
sortable: false,
|
||||
tdClass: 'text-nowrap',
|
||||
},
|
||||
{
|
||||
|
||||
@@ -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',
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user