Fixed dark Private logos.

This commit is contained in:
DebaucheryLibrarian
2021-01-24 17:44:34 +01:00
parent 3573b84c97
commit af59ad3d33
44 changed files with 12 additions and 0 deletions

View File

@@ -328,6 +328,8 @@
v-if="actor.avatar || (actor.photos && actor.photos.length > 0)"
v-slot="scroll"
:expandable="false"
:album="true"
:items="actor.photos"
@album="showAlbum = true"
>
<Photos

View File

@@ -50,6 +50,12 @@
class="expand-dark"
@expand="(state) => $emit('expand', state)"
/>
<button
v-if="album && items && items.length > 0 && scrollable"
class="album-toggle"
@click="showAlbum = true"
><Icon icon="grid3" />View album</button>
</div>
</template>
@@ -111,6 +117,10 @@ export default {
type: Boolean,
default: false,
},
album: {
type: Boolean,
default: false,
},
items: {
type: Array,
default: null,