diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-03-05 20:48:46 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-03-05 20:48:46 +0900 |
| commit | 9f73c23b38b74c5307736e08978e3fb6531035ee (patch) | |
| tree | b5549c67063367f844cc4e5ae8c6fc77d87f6148 /packages | |
| parent | [ci skip] Update CHANGELOG.md (diff) | |
| download | misskey-9f73c23b38b74c5307736e08978e3fb6531035ee.tar.gz misskey-9f73c23b38b74c5307736e08978e3fb6531035ee.tar.bz2 misskey-9f73c23b38b74c5307736e08978e3fb6531035ee.zip | |
[ci skip] fix(client): fix post button of channel
Diffstat (limited to '')
| -rw-r--r-- | packages/frontend/src/pages/channel.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue index d757e5b1a2..65edb97e83 100644 --- a/packages/frontend/src/pages/channel.vue +++ b/packages/frontend/src/pages/channel.vue @@ -85,7 +85,7 @@ function edit() { function openPostForm() { os.post({ channel: { - id: channel.channelId, + id: channel.id, }, }); } |