diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-04-02 03:01:41 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-04-02 03:01:41 +0900 |
| commit | 7770eac9cbc44620b2f03393ee421ddb54bc1f09 (patch) | |
| tree | d7bf0e2972042f880e79f6490e2b5a83bfe7407d /src/web/app/common | |
| parent | Fix #388 (diff) | |
| download | misskey-7770eac9cbc44620b2f03393ee421ddb54bc1f09.tar.gz misskey-7770eac9cbc44620b2f03393ee421ddb54bc1f09.tar.bz2 misskey-7770eac9cbc44620b2f03393ee421ddb54bc1f09.zip | |
Fix typo
Diffstat (limited to 'src/web/app/common')
| -rw-r--r-- | src/web/app/common/tags/messaging/form.tag | 2 | ||||
| -rw-r--r-- | src/web/app/common/tags/poll.tag | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/common/tags/messaging/form.tag b/src/web/app/common/tags/messaging/form.tag index 9bbb10320b..b3b61b43d2 100644 --- a/src/web/app/common/tags/messaging/form.tag +++ b/src/web/app/common/tags/messaging/form.tag @@ -8,7 +8,7 @@ <button class="attach-from-local" type="button" title="%i18n:common.tags.mk-messaging-form.attach-from-local%"> <i class="fa fa-upload"></i> </button> - <button class="attach-from-drive" type="button" title="%i18n:common.tags.mk-messaging-form.atach-from-drive%"> + <button class="attach-from-drive" type="button" title="%i18n:common.tags.mk-messaging-form.attach-from-drive%"> <i class="fa fa-folder-open"></i> </button> <input name="file" type="file" accept="image/*"/> diff --git a/src/web/app/common/tags/poll.tag b/src/web/app/common/tags/poll.tag index 8ab899652e..52614cf709 100644 --- a/src/web/app/common/tags/poll.tag +++ b/src/web/app/common/tags/poll.tag @@ -1,6 +1,6 @@ <mk-poll data-is-voted={ isVoted }> <ul> - <li each={ poll.choices } onclick={ vote.bind(null, id) } class={ voted: voted } title={ !parent.isVoted ? '%i18n:common.tags.mk-poll.%'.replace('{}', '%i18n:common.tags.mk-poll.vote-to%') : '' }> + <li each={ poll.choices } onclick={ vote.bind(null, id) } class={ voted: voted } title={ !parent.isVoted ? '%i18n:common.tags.mk-poll.vote-to%'.replace('{}', text) : '' }> <div class="backdrop" style={ 'width:' + (parent.result ? (votes / parent.total * 100) : 0) + '%' }></div> <span> <i class="fa fa-check" if={ is_voted }></i> |