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

Commit

Permalink
show contactinfo on own request
Browse files Browse the repository at this point in the history
  • Loading branch information
s0lvang committed Mar 19, 2020
1 parent 14ab5f0 commit 6042f91
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 6042f91

Please sign in to comment.