diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-05-22 12:55:53 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-05-22 12:55:53 +0900 |
| commit | c7456224af3fbe39b3207f936781ac9b09a37a5f (patch) | |
| tree | 96fd1a26fc4e146291783c30aaa6f17a71fe78e8 /src/client | |
| parent | Add group update / transfer API (diff) | |
| download | sharkey-c7456224af3fbe39b3207f936781ac9b09a37a5f.tar.gz sharkey-c7456224af3fbe39b3207f936781ac9b09a37a5f.tar.bz2 sharkey-c7456224af3fbe39b3207f936781ac9b09a37a5f.zip | |
Fix bug
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/views/pages/user-group-editor.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/app/common/views/pages/user-group-editor.vue b/src/client/app/common/views/pages/user-group-editor.vue index a32148cd7f..3cfecd837f 100644 --- a/src/client/app/common/views/pages/user-group-editor.vue +++ b/src/client/app/common/views/pages/user-group-editor.vue @@ -158,6 +158,7 @@ export default Vue.extend({ }, async invite() { + const t = this.$t('invited'); const { result: user } = await this.$root.dialog({ user: { local: true @@ -170,7 +171,7 @@ export default Vue.extend({ }).then(() => { this.$root.dialog({ type: 'success', - text: this.$t('invited') + text: t }); }).catch(e => { this.$root.dialog({ |