Skip to content

Commit

Permalink
Revert order of finihsed farms
Browse files Browse the repository at this point in the history
  • Loading branch information
jeisses committed Oct 23, 2023
1 parent 432d44d commit 9d44d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/MasterChef.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<p v-if="activeFarms.length === 0">No active farms at the moment. Please come back later</p>
<br>
<h4>Finished Farms:</h4>
<div :key="farm.id" v-for="farm in finishedFarms.reverse()" class="box farm">
<div :key="farm.id" v-for="farm in finishedFarms" class="box farm">
<nuxt-link :to="'/farms/' + farm.id" style="width: 100%">
<div class="is-flex is-flex-direction-row is-align-items-center is-justify-content-space-between" style="width: 100%">
<div class="is-flex is-flex-direction-row is-align-items-center">
Expand Down

0 comments on commit 9d44d56

Please sign in to comment.