Skip to content

Commit

Permalink
PackageDetail.vue: move author in meta panel
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Aug 26, 2018
1 parent 4a824e1 commit 95170af
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/views/PackageDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,6 @@
</v-card-text>
</v-card>
</v-flex>
<v-flex v-if="data.currentPackage.author">
<v-card>
<v-card-title class="title">Author</v-card-title>
<v-card-text>
<a v-if="data.currentPackage.author.email" :href="`mailto:${data.currentPackage.author.email}`">{{data.currentPackage.author.name}}</a>
<span v-else>{{data.currentPackage.displayName}}</span>
</v-card-text>
</v-card>
</v-flex>
<v-flex v-if="data.currentPackage.license">
<v-card>
<v-card-title class="title">License</v-card-title>
Expand All @@ -128,6 +119,15 @@
</v-card-text>
</v-card>
</v-flex>
<v-flex v-if="data.currentPackage.author">
<v-card>
<v-card-title class="title">Author</v-card-title>
<v-card-text>
<a v-if="data.currentPackage.author.email" :href="`mailto:${data.currentPackage.author.email}`">{{data.currentPackage.author.name}}</a>
<span v-else>{{data.currentPackage.displayName}}</span>
</v-card-text>
</v-card>
</v-flex>
<v-flex v-if="data.currentPackage.keywords">
<v-card>
<v-card-title class="title">Keywords</v-card-title>
Expand Down

0 comments on commit 95170af

Please sign in to comment.