Showing alias on scene actor tile.

This commit is contained in:
2026-06-28 06:05:15 +02:00
parent ffd68d5037
commit a75f0662ad
3 changed files with 30 additions and 2 deletions

View File

@@ -82,6 +82,13 @@
:src="`/logos/${actor.entity.slug}/favicon_dark.png`"
class="favicon"
>
<Icon
v-if="actor.alias && actor.alias.name !== actor.name"
v-tooltip="`Credited as '${actor.alias.name}'`"
icon="at-sign"
class="alias"
/>
</span>
</div>
</template>
@@ -258,4 +265,11 @@ const favorited = ref(props.actor.stashes.some((actorStash) => actorStash.id ===
height: .75rem;
margin-left: .25rem;
}
.alias {
height: 100%;
fill: var(--glass-weak-20);
padding: 0 .25rem;
cursor: help;
}
</style>