fix indent
This commit is contained in:
parent
a04f311121
commit
a3b6a1d362
16
src/App.vue
16
src/App.vue
@ -62,15 +62,15 @@
|
|||||||
</span>
|
</span>
|
||||||
<div class="comment_open"><button class="comment_open" v-on:click="comment_open = !comment_open"><i class="fa-solid fa-chevron-down"></i></button></div>
|
<div class="comment_open"><button class="comment_open" v-on:click="comment_open = !comment_open"><i class="fa-solid fa-chevron-down"></i></button></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bsky_comment" v-else>
|
<div class="bsky_comment" v-else>
|
||||||
<span v-for="i in api_json.data" class="comment">
|
<span v-for="i in api_json.data" class="comment">
|
||||||
<p class="comment-body" v-if="i.text">
|
<p class="comment-body" v-if="i.text">
|
||||||
<img :src="'/icon/' + i.did.replace('did:plc:', '') + '.jpg'" v-if="i.avatar" class="comment"/> <span class="comment-time" v-if="i.handle">{{ moment(i.updated_at) }}</span> <span class="comment-handle" v-if="i.handle"><a :href="i.bsky_url">@{{ i.handle }}</a></span>
|
<img :src="'/icon/' + i.did.replace('did:plc:', '') + '.jpg'" v-if="i.avatar" class="comment"/> <span class="comment-time" v-if="i.handle">{{ moment(i.updated_at) }}</span> <span class="comment-handle" v-if="i.handle"><a :href="i.bsky_url">@{{ i.handle }}</a></span>
|
||||||
<span class="comment-text">{{ i.text }}</span>
|
<span class="comment-text">{{ i.text }}</span>
|
||||||
</p>
|
</p>
|
||||||
</span>
|
</span>
|
||||||
<div class="comment_open"><button class="comment_open" v-on:click="comment_open = !comment_open"><i class="fa-solid fa-chevron-up"></i></button></div>
|
<div class="comment_open"><button class="comment_open" v-on:click="comment_open = !comment_open"><i class="fa-solid fa-chevron-up"></i></button></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="page_title">
|
<div class="page_title">
|
||||||
<div class="page_data">
|
<div class="page_data">
|
||||||
|
Loading…
Reference in New Issue
Block a user