Skip to content

Commit

Permalink
PackageDetail.vue: sort version list descending
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Nov 26, 2018
1 parent fdbe80c commit 83020e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/PackageDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
<h2>Version History</h2>
<v-list>
<v-list-tile
v-for="(historicPackage, version) in data.versionsHistory"
v-for="version in Object.keys(data.versionsHistory)"
:key="version"
@click="setVersion(version)"
>
Expand Down

0 comments on commit 83020e8

Please sign in to comment.