Skip to content
Snippets Groups Projects
Commit 4c498320 authored by syuilo's avatar syuilo
Browse files

[Client] 文言を修正

parent 435fcd7d
No related merge requests found
......@@ -3,7 +3,7 @@ get-post-summary = (post) ~>
# メディアが添付されているとき
if post.media?
summary += " (#{post.media.length}のメディア)"
summary += " (#{post.media.length}のメディア)"
# 投票が添付されているとき
if post.poll?
......
<mk-sub-post-content>
<div class="body"><a class="reply" if={ post.reply_to_id }><i class="fa fa-reply"></i></a><span ref="text"></span><a class="quote" if={ post.repost_id } href={ '/post:' + post.repost_id }>RP: ...</a></div>
<details if={ post.media }>
<summary>({ post.media.length }枚の画像)</summary>
<summary>({ post.media.length }つのメディア)</summary>
<mk-images-viewer images={ post.media }></mk-images-viewer>
</details>
<style type="stylus">
......
<mk-sub-post-content>
<div class="body"><a class="reply" if={ post.reply_to_id }><i class="fa fa-reply"></i></a><span ref="text"></span><a class="quote" if={ post.repost_id } href={ '/post:' + post.repost_id }>RP: ...</a></div>
<details if={ post.media }>
<summary>({ post.media.length }枚の画像)</summary>
<summary>({ post.media.length }つのメディア)</summary>
<mk-images-viewer images={ post.media }></mk-images-viewer>
</details>
<style type="stylus">
......
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