This commit is contained in:
syuilo 2018-12-02 15:30:48 +09:00
parent c9ac9923df
commit 4f5abed70d
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ export default Vue.extend({
menu() { menu() {
let menu = [{ let menu = [{
icon: ['far', 'list'], icon: ['fas', 'list'],
text: this.$t('push-to-list'), text: this.$t('push-to-list'),
action: async () => { action: async () => {
const lists = await this.$root.api('users/lists/list'); const lists = await this.$root.api('users/lists/list');
@ -130,7 +130,7 @@ export default Vue.extend({
}, },
showCancelButton: true showCancelButton: true
}); });
if (listId == null) return; if (!listId) return;
await this.$root.api('users/lists/push', { await this.$root.api('users/lists/push', {
listId: listId, listId: listId,
userId: this.user.id userId: this.user.id