diff --git a/src/components/PlayerProfileView/ProfileSummary.vue b/src/components/PlayerProfileView/ProfileSummary.vue index 93ff7cf..ee396a4 100644 --- a/src/components/PlayerProfileView/ProfileSummary.vue +++ b/src/components/PlayerProfileView/ProfileSummary.vue @@ -12,8 +12,14 @@
-

+

+ diamond icon {{ playerName }}

@@ -244,6 +250,10 @@ const props = defineProps({ } }); +const isPlayerDonator = computed(() => + props.playerName ? apiStore.donatorsData.includes(props.playerName) : false +); + const activeDispatches = computed(() => { if (!props.playerName) return []; if (!apiStore.activeData || !apiStore.activeData.activeSceneries) return []; @@ -294,6 +304,13 @@ const activeTrains = computed(() => { .player-name-header { margin: 0.5em 0; + + a { + display: flex; + justify-content: center; + align-items: center; + gap: 0.25em; + } } .player-badges {