Compare commits
2 Commits
24ea7e0c5c
...
4c306effb7
Author | SHA1 | Date |
---|---|---|
|
4c306effb7 | |
|
fbbbd99d3d |
|
@ -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;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.170.0",
|
||||
"version": "1.170.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in New Issue