1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-02 20:44:18 +02:00

update linr

This commit is contained in:
syuilo
2021-11-19 19:36:12 +09:00
parent b6e3f1c490
commit 5d968afa74
291 changed files with 1176 additions and 1164 deletions

View File

@@ -3,16 +3,16 @@
<template #header><i class="fas fa-image" style="margin-right: 0.5em;"></i>{{ $ts.images }}</template>
<div class="ujigsodd">
<MkLoading v-if="fetching"/>
<div class="stream" v-if="!fetching && images.length > 0">
<div v-if="!fetching && images.length > 0" class="stream">
<MkA v-for="image in images"
:key="image.id"
class="img"
:to="notePage(image.note)"
:key="image.id"
>
<ImgWithBlurhash :hash="image.blurhash" :src="thumbnail(image.file)" :alt="image.name" :title="image.name"/>
</MkA>
</div>
<p class="empty" v-if="!fetching && images.length == 0">{{ $ts.nothing }}</p>
<p v-if="!fetching && images.length == 0" class="empty">{{ $ts.nothing }}</p>
</div>
</MkContainer>
</template>