lint: fix

This commit is contained in:
anatawa12 2024-06-14 15:27:16 +09:00
parent 063cd345d2
commit eeb1d73362
No known key found for this signature in database
GPG Key ID: 9CA909848B8E4EA6
4 changed files with 6 additions and 6 deletions

View File

@ -42,7 +42,7 @@ onMounted(() => {
misskeyApi('antennas/show', { antennaId: props.column.antennaId })
.then(value => {
antennaName.value = value.name;
})
});
}
});

View File

@ -49,9 +49,9 @@ onMounted(() => {
setChannel();
} else {
misskeyApi('channels/show', { channelId: props.column.channelId })
.then(value => channelName.value = value.name)
.then(value => channelName.value = value.name);
}
})
});
watch(soundSetting, v => {
updateColumn(props.column.id, { soundSetting: v });

View File

@ -41,9 +41,9 @@ onMounted(() => {
setList();
} else {
misskeyApi('users/lists/show', { listId: props.column.listId })
.then(value => listName.value = value.name)
.then(value => listName.value = value.name);
}
})
});
watch(withRenotes, v => {
updateColumn(props.column.id, {

View File

@ -40,7 +40,7 @@ onMounted(() => {
setRole();
} else {
misskeyApi('roles/show', { roleId: props.column.roleId })
.then(value => roleName.value = value.name)
.then(value => roleName.value = value.name);
}
});