Skip to content

Commit

Permalink
fix: fix the play/pause button
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Schmidt <tim@launchbadge.com>
  • Loading branch information
Sheng-Long committed Oct 6, 2023
1 parent bb24df1 commit 9ad2bd8
Show file tree
Hide file tree
Showing 5 changed files with 163 additions and 163 deletions.
7 changes: 6 additions & 1 deletion src/components/token/NftHolderTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
:striped="true"
:mobile-breakpoint="ORUGA_MOBILE_BREAKPOINT"

style="cursor: pointer"
aria-current-label="Current page"
aria-next-label="Next page"
aria-page-label="Page"
Expand Down Expand Up @@ -142,3 +141,9 @@ export default defineComponent({
});
</script>

<!-- --------------------------------------------------------------------------------------------------------------- -->
<!-- STYLE -->
<!-- --------------------------------------------------------------------------------------------------------------- -->

<style/>
5 changes: 5 additions & 0 deletions src/components/transaction/NftTransactionTableController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,15 @@ export class NftTransactionTableController extends TableController<
const params = {} as {
limit: number
order: string
timestamp: string | undefined
}
params.limit = limit
params.order = order

if (consensusTimestamp !== null) {
params.timestamp = operator + ":" + consensusTimestamp
}

const r = await axios.get<NftTransactionHistory>(
`api/v1/tokens/${this.tokenId.value}/nfts/${this.serialNumber.value}/transactions`,
{params: params},
Expand Down
Loading

0 comments on commit 9ad2bd8

Please sign in to comment.