diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 15:30:48 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 15:30:48 +0900 |
| commit | 4f5abed70d56c55a5f338239a7cde0341b6a740c (patch) | |
| tree | c4c34fff39d585445e9a4fde0c4123c46b243e31 /src | |
| parent | Refactor: rename alert to dialog (diff) | |
| download | misskey-4f5abed70d56c55a5f338239a7cde0341b6a740c.tar.gz misskey-4f5abed70d56c55a5f338239a7cde0341b6a740c.tar.bz2 misskey-4f5abed70d56c55a5f338239a7cde0341b6a740c.zip | |
Fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/pages/user.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/pages/user.vue b/src/client/app/mobile/views/pages/user.vue index a926b1a83b..afef398acf 100644 --- a/src/client/app/mobile/views/pages/user.vue +++ b/src/client/app/mobile/views/pages/user.vue @@ -116,7 +116,7 @@ export default Vue.extend({ menu() { let menu = [{ - icon: ['far', 'list'], + icon: ['fas', 'list'], text: this.$t('push-to-list'), action: async () => { const lists = await this.$root.api('users/lists/list'); @@ -130,7 +130,7 @@ export default Vue.extend({ }, showCancelButton: true }); - if (listId == null) return; + if (!listId) return; await this.$root.api('users/lists/push', { listId: listId, userId: this.user.id |