summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-12-02 15:30:48 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-12-02 15:30:48 +0900
commit4f5abed70d56c55a5f338239a7cde0341b6a740c (patch)
treec4c34fff39d585445e9a4fde0c4123c46b243e31 /src
parentRefactor: rename alert to dialog (diff)
downloadmisskey-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.vue4
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