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/client/scripts/compose-notification.ts | |
| parent | fix(server): Fix #6433 (diff) | |
| download | sharkey-111eb43fd93d0a496da054c36ec84c6066c1c434.tar.gz sharkey-111eb43fd93d0a496da054c36ec84c6066c1c434.tar.bz2 sharkey-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/client/scripts/compose-notification.ts')
| -rw-r--r-- | src/client/scripts/compose-notification.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/scripts/compose-notification.ts b/src/client/scripts/compose-notification.ts index c3281955e4..1552d45e4e 100644 --- a/src/client/scripts/compose-notification.ts +++ b/src/client/scripts/compose-notification.ts @@ -5,7 +5,7 @@ import { clientDb, get, bulkGet } from '../db'; const getTranslation = (text: string): Promise<string> => get(text, clientDb.i18n); export default async function(type, data): Promise<[string, NotificationOptions]> { - const contexts = ['deletedNote', 'invisibleNote', 'withNFiles', '_cw.poll']; + const contexts = ['deletedNote', 'invisibleNote', 'withNFiles', 'poll']; const locale = Object.fromEntries(await bulkGet(contexts, clientDb.i18n) as [string, string][]); switch (type) { |