This commit is contained in:
syuilo 2023-12-27 20:35:52 +09:00 committed by Marie
parent 530a282524
commit 24ca9ac5ef
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828

View file

@ -99,7 +99,7 @@ const bannerId = ref<string | null>(null);
const color = ref('#000'); const color = ref('#000');
const isSensitive = ref(false); const isSensitive = ref(false);
const allowRenoteToExternal = ref(true); const allowRenoteToExternal = ref(true);
const pinnedNotes = ref<Partial<Misskey.entities.Note>[]>([]); const pinnedNotes = ref<{ id: Misskey.entities.Note['id'] }[]>([]);
watch(() => bannerId.value, async () => { watch(() => bannerId.value, async () => {
if (bannerId.value == null) { if (bannerId.value == null) {