Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 4c306effb7 1.170.1 2021-02-13 00:30:53 +01:00
DebaucheryLibrarian fbbbd99d3d Properly iterating through aliases in actor profile. 2021-02-13 00:30:49 +01:00
3 changed files with 13 additions and 3 deletions

View File

@ -19,7 +19,13 @@
class="bio-item"
>
<dfn class="bio-label">Also known as</dfn>
<span>{{ actor.aliases.join(', ') }}</span>
<span class="bio-value">
<span
v-for="alias in actor.aliases"
:key="`alias-${alias.id}`"
class="alias"
>{{ alias.name }}</span>
</span>
</li>
<Social
@ -643,6 +649,10 @@ export default {
text-transform: capitalize;
}
.alias:not(:last-child)::after {
content: ',\00a0';
}
.scraped {
color: var(--lighten-weak);
font-size: .8rem;

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.170.0",
"version": "1.170.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.170.0",
"version": "1.170.1",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {