diff options
| author | FINEARCHS <133759614+FineArchs@users.noreply.github.com> | 2025-12-11 23:15:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-11 23:15:57 +0900 |
| commit | d605680524bdee6a5e12f0a7810f691dba95f626 (patch) | |
| tree | 65b3068029cf40089907fba232109da03a56fffc /packages/frontend/src/pages | |
| parent | fix(frontend): 削除されたノートのリノートが正しく表示さ... (diff) | |
| download | misskey-d605680524bdee6a5e12f0a7810f691dba95f626.tar.gz misskey-d605680524bdee6a5e12f0a7810f691dba95f626.tar.bz2 misskey-d605680524bdee6a5e12f0a7810f691dba95f626.zip | |
fix(frontend): オーナー不在のチャンネルをミュートできないのを修正 (#16906)
* オーナー不在のチャンネルをミュートできないのを修正
* update changelog
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/pages')
| -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 aed64ff3cb..0879aa72be 100644 --- a/packages/frontend/src/pages/channel.vue +++ b/packages/frontend/src/pages/channel.vue @@ -257,7 +257,7 @@ async function search() { } const headerActions = computed(() => { - if (channel.value && channel.value.userId) { + if (channel.value) { const headerItems: PageHeaderItem[] = []; headerItems.push({ |