Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 106c7cb

Browse files
authored
Merge pull request #2316 from kkukelka/fix/spotlight-sorting-direction
2 parents 950682d + 8678971 commit 106c7cb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

components/series/SeriesTable.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
<b-table
4545
:data="data"
4646
:default-sort="[sortBy.field, sortBy.value]"
47+
default-sort-direction="desc"
4748
backend-sorting
4849
hoverable
4950
@sort="onSort">

components/spotlight/SpotlightTable.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
:data="toggleUsersWithIdentity ? usersWithIdentity : data"
66
:current-page="currentPage ? currentPage : 1"
77
:default-sort="[sortBy.field, sortBy.value]"
8+
default-sort-direction="desc"
89
hoverable
910
detailed
1011
paginated
@@ -138,7 +139,7 @@
138139
<script lang="ts">
139140
import { Component, Prop, mixins } from 'nuxt-property-decorator'
140141
import { Column, Row } from './types'
141-
import { columns, nftFn } from './utils'
142+
import { columns } from './utils'
142143
import collectionSpotlightList from '@/queries/rmrk/subsquid/collectionSpotlightList.graphql'
143144
144145
import TransactionMixin from '@/utils/mixins/txMixin'

0 commit comments

Comments
 (0)