Skip to content

Commit

Permalink
PackageDetail: move keywords to meta panel
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Aug 26, 2018
1 parent 9a01acd commit a6d5ec8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/views/PackageDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@
</v-card>
</v-tab-item>
</v-tabs>
<div>
<h2 class="title">Keywords</h2>
<v-chip v-for="keyword in data.currentPackage.keywords" :key="keyword">{{keyword}}</v-chip>
</div>
</v-flex>
<v-flex xs12 md5 xl4 order-xs1 order-md2>
<v-layout row wrap>
Expand Down Expand Up @@ -109,6 +105,14 @@
</v-card-text>
</v-card>
</v-flex>
<v-flex v-if="data.currentPackage.repository">
<v-card>
<v-card-title primary-title class="title">Keywords</v-card-title>
<v-card-text>
<v-chip v-for="keyword in data.currentPackage.keywords" :key="keyword">{{keyword}}</v-chip>
</v-card-text>
</v-card>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
Expand Down

0 comments on commit a6d5ec8

Please sign in to comment.