Skip to content
Snippets Groups Projects
Commit 94745e11 authored by syuilo's avatar syuilo
Browse files

Fix bug

parent 69af83b5
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@
<div class="tags" v-if="p.tags && p.tags.length > 0">
<router-link v-for="tag in p.tags" :key="tag" :to="`/search?q=#${tag}`">{{ tag }}</router-link>
</div>
<a class="quote" v-if="p.repost">RP:</a>
<a class="rp" v-if="p.repost">RP:</a>
<mk-url-preview v-for="url in urls" :url="url" :key="url"/>
</div>
<div class="media" v-if="p.media">
......@@ -432,7 +432,7 @@ export default Vue.extend({
margin-right 8px
color #717171
> .quote
> .rp
margin-left 4px
font-style oblique
color #a0bf46
......
......@@ -3,7 +3,7 @@
<div class="body">
<a class="reply" v-if="post.reply_id">%fa:reply%</a>
<mk-post-html :ast="post.ast" :i="os.i"/>
<a class="quote" v-if="post.repost_id" :href="`/post:${post.repost_id}`">RP: ...</a>
<a class="rp" v-if="post.repost_id" :href="`/post:${post.repost_id}`">RP: ...</a>
<mk-url-preview v-for="url in urls" :url="url" :key="url"/>
</div>
<details v-if="post.media">
......@@ -45,7 +45,7 @@ export default Vue.extend({
margin-right 6px
color #717171
> .quote
> .rp
margin-left 4px
font-style oblique
color #a0bf46
......
......@@ -39,7 +39,7 @@
<router-link v-for="tag in p.tags" :key="tag" :to="`/search?q=#${tag}`">{{ tag }}</router-link>
</div>
<mk-url-preview v-for="url in urls" :url="url" :key="url"/>
<a class="quote" v-if="p.repost != null">RP:</a>
<a class="rp" v-if="p.repost != null">RP:</a>
</div>
<div class="media" v-if="p.media">
<mk-images :images="p.media"/>
......@@ -365,7 +365,7 @@ export default Vue.extend({
margin-right 8px
color #717171
> .quote
> .rp
margin-left 4px
font-style oblique
color #a0bf46
......
......@@ -3,7 +3,7 @@
<div class="body">
<a class="reply" v-if="post.reply_id">%fa:reply%</a>
<mk-post-html v-if="post.ast" :ast="post.ast" :i="os.i"/>
<a class="quote" v-if="post.repost_id">RP: ...</a>
<a class="rp" v-if="post.repost_id">RP: ...</a>
</div>
<details v-if="post.media">
<summary>({{ post.media.length }}個のメディア)</summary>
......@@ -32,7 +32,7 @@ export default Vue.extend({
margin-right 6px
color #717171
> .quote
> .rp
margin-left 4px
font-style oblique
color #a0bf46
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment