Bio allows for date of birth without (zero) year. Added entity ID to logo title.
This commit is contained in:
@@ -14,18 +14,24 @@
|
||||
<img
|
||||
v-if="entity.type === 'network'"
|
||||
class="logo logo-child"
|
||||
:alt="entity.name"
|
||||
:title="`${entity.name} (#${entity.id})`"
|
||||
:src="`/logos/${entity.slug}/thumbs/network.png`"
|
||||
>
|
||||
|
||||
<img
|
||||
v-else-if="entity.parent && !entity.isIndependent"
|
||||
class="logo logo-child"
|
||||
:alt="entity.name"
|
||||
:title="`${entity.name} (#${entity.id})`"
|
||||
:src="`/logos/${entity.parent.slug}/thumbs/${entity.slug}.png`"
|
||||
>
|
||||
|
||||
<img
|
||||
v-else
|
||||
class="logo logo-child"
|
||||
:alt="entity.name"
|
||||
:title="`${entity.name} (#${entity.id})`"
|
||||
:src="`/logos/${entity.slug}/thumbs/${entity.slug}.png`"
|
||||
>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user