Browse Source

add periods "." at the end of the giver & receiver sentences

split_build_process
Trent Larson 2 months ago
parent
commit
76280b7ee5
  1. 16
      src/views/GiftedDetailsView.vue

16
src/views/GiftedDetailsView.vue

@ -113,8 +113,8 @@
<label class="text-sm mt-1"> <label class="text-sm mt-1">
{{ {{
giverDid giverDid
? "This was provided by " + giverName ? "This was provided by " + giverName + "."
: "No individual gave" : "No individual gave."
}} }}
</label> </label>
<fa <fa
@ -140,8 +140,8 @@
<label class="text-sm mt-1"> <label class="text-sm mt-1">
{{ {{
providerProjectId providerProjectId
? "This was provided by " + providerProjectName ? "This was provided by " + providerProjectName + "."
: "This was not provided by a project" : "This was not provided by a project."
}} }}
</label> </label>
<fa <fa
@ -174,8 +174,8 @@
<label class="text-sm mt-1"> <label class="text-sm mt-1">
{{ {{
recipientDid recipientDid
? "This was given to " + recipientName ? "This was given to " + recipientName + "."
: "No individual benefitted" : "No individual benefitted."
}} }}
</label> </label>
<fa <fa
@ -201,8 +201,8 @@
<label class="text-sm mt-1"> <label class="text-sm mt-1">
{{ {{
fulfillsProjectId fulfillsProjectId
? "This was given to " + fulfillsProjectName ? "This was given to " + fulfillsProjectName + ". "
: "No project benefitted" : "No project benefitted."
}} }}
</label> </label>
<fa <fa

Loading…
Cancel
Save