summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/channel-editor.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-12-27 20:35:52 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-12-27 20:35:52 +0900
commit9d5fc4ca1742dce679489ea4605a415d4f0f7482 (patch)
treeac59c0c3ce7311858cb553c1d8baf210911e3f06 /packages/frontend/src/pages/channel-editor.vue
parentfix(test): CIが落ちている問題を修正 (#12816) (diff)
downloadmisskey-9d5fc4ca1742dce679489ea4605a415d4f0f7482.tar.gz
misskey-9d5fc4ca1742dce679489ea4605a415d4f0f7482.tar.bz2
misskey-9d5fc4ca1742dce679489ea4605a415d4f0f7482.zip
refactor
Diffstat (limited to 'packages/frontend/src/pages/channel-editor.vue')
-rw-r--r--packages/frontend/src/pages/channel-editor.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/channel-editor.vue b/packages/frontend/src/pages/channel-editor.vue
index cfcb645247..fcbd03553d 100644
--- a/packages/frontend/src/pages/channel-editor.vue
+++ b/packages/frontend/src/pages/channel-editor.vue
@@ -99,7 +99,7 @@ const bannerId = ref<string | null>(null);
const color = ref('#000');
const isSensitive = ref(false);
const allowRenoteToExternal = ref(true);
-const pinnedNotes = ref<Partial<Misskey.entities.Note>[]>([]);
+const pinnedNotes = ref<{ id: Misskey.entities.Note['id'] }[]>([]);
watch(() => bannerId.value, async () => {
if (bannerId.value == null) {