@dcrackel/hematournamentui 1.0.270 → 1.0.271

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/hematournamentui",
3
3
  "private": false,
4
- "version": "1.0.270",
4
+ "version": "1.0.271",
5
5
  "type": "module",
6
6
  "main": "dist/HemaTournamentUI-lib.umd.js",
7
7
  "module": "dist/HemaTournamentUI-lib.es.js",
@@ -13,7 +13,7 @@
13
13
  </div>
14
14
  <div class="flex flex-col w-4/12 justify-star">
15
15
  <span class="w-full flex justify-start">
16
- <BaseText :text="fullName" size="xl" color="quaternary" weight="bold"/>
16
+ <BaseText :text="person.Person.DisplayName" size="xl" color="quaternary" weight="bold"/>
17
17
  </span>
18
18
  <span class="w-full flex justify-start">
19
19
  <BaseText :text="person.Person.Club.Name" size="sm" color="quinary" weight="normal"/>
@@ -64,9 +64,6 @@ export default {
64
64
  }
65
65
  },
66
66
  computed: {
67
- fullName() {
68
- return `${this.person.Person.DisplayName}`;
69
- },
70
67
  portraitURL() {
71
68
  const images = this.person.Person.Images || [];
72
69
  const portrait = images.find(image => image.Type === 'Portrait');