We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37bb581 commit 9d60bc7Copy full SHA for 9d60bc7
src/components/nodes-table/SmartView.vue
@@ -388,10 +388,12 @@ export default {
388
computed: {
389
...mapState(useBaseStore, ['nodes']),
390
sortingRules() {
391
- return {
392
- key: this.sortBy.toLowerCase(),
393
- order: this.sortDesc ? 'desc' : 'asc',
394
- }
+ return [
+ {
+ key: this.sortBy.toLowerCase(),
+ order: this.sortDesc ? 'desc' : 'asc',
395
+ },
396
+ ]
397
},
398
399
data() {
0 commit comments