Skip to content

Commit

Permalink
fix: In Auction names pagination bug (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek authored Dec 20, 2023
1 parent 254b2d0 commit d81dcf9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/NamesInAuctionPanel.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<template>
<app-panel
v-if="inAuctionNames"
class="names-in-auction-panel">
<app-panel class="names-in-auction-panel">
<paginated-content
:entities="inAuctionNames"
@prev-clicked="loadPrevNames"
@next-clicked="loadNextNames">
<names-in-auction-table
v-if="inAuctionNames"
class="names-in-auction-panel__names-in-auction-table u-hidden-mobile"
:names="inAuctionNames"/>

<names-in-auction-table-condensed
v-if="inAuctionNames"
class="u-hidden-desktop"
:names="inAuctionNames"/>
</paginated-content>
Expand Down

0 comments on commit d81dcf9

Please sign in to comment.