Skip to content
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #162 from s0lvang/showContactInfo
Browse files Browse the repository at this point in the history
show contactinfo on own request
  • Loading branch information
Adrianht authored Mar 19, 2020
2 parents 126fa24 + 6042f91 commit 678520b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/DetailedRequest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@
/>
<hr />
<h3>Kontaktinformasjon</h3>
<p v-if="isMyRequest">
<p v-if="isMyRequest || isMe">
<icon name="account_circle" />
<span>{{ request.name }}</span>
</p>
<p v-if="isMyRequest || isMe">
<icon name="email" />
<a :href="getEmailLink">{{ request.email }}</a>
</p>
<p v-if="isMyRequest">
<p v-if="isMyRequest || isMe">
<icon name="phone" />
<a :href="getPhoneLink">{{ request.phoneNumber }}</a>
<span v-if="isMe">
Expand Down

0 comments on commit 678520b

Please sign in to comment.