diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-06-03 13:30:17 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-03 13:30:17 +0900 |
| commit | 111eb43fd93d0a496da054c36ec84c6066c1c434 (patch) | |
| tree | 8db1683b69ef571567a84e285f5eb27e14645166 /src/misc | |
| parent | fix(server): Fix #6433 (diff) | |
| download | misskey-111eb43fd93d0a496da054c36ec84c6066c1c434.tar.gz misskey-111eb43fd93d0a496da054c36ec84c6066c1c434.tar.bz2 misskey-111eb43fd93d0a496da054c36ec84c6066c1c434.zip | |
feat(client): 投稿フォームのボタンの説明を表示するように (#6408)
* Add title attr with buttons on the post form
* fix
* tooltip
* missing ;
* remove title attr
* fix bug
* Update reactions-viewer.details.vue
* help wip
* ok!
* i18n
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'src/misc')
| -rw-r--r-- | src/misc/get-note-summary.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/get-note-summary.ts b/src/misc/get-note-summary.ts index c23306ab11..7db8bca3ec 100644 --- a/src/misc/get-note-summary.ts +++ b/src/misc/get-note-summary.ts @@ -27,7 +27,7 @@ const summarize = (note: any, locale: any): string => { // 投票が添付されているとき if (note.poll) { - summary += ` (${locale._cw?.poll || locale['_cw.poll']})`; + summary += ` (${locale['poll']})`; } // 返信のとき |