From 0edb0133fcb2dab8904d9da7f444fe6996b6d6b6 Mon Sep 17 00:00:00 2001 From: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Thu, 6 Nov 2025 10:15:59 +0900 Subject: enhance(frontend): チャンネル周りのUIの整理 (#16743) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * enhance(frontend): チャンネル周りのUIの整理 * fix: 共通要素間の一貫性を保つ * Update Changelog * fix: チャンネル新規作成を管理タブに移動・上部ボタン削除 --- packages/frontend/src/pages/channel.vue | 1 + packages/frontend/src/pages/channels.vue | 14 +++----------- 2 files changed, 4 insertions(+), 11 deletions(-) (limited to 'packages/frontend/src/pages') diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue index 9e1608f24d..7c19e6798d 100644 --- a/packages/frontend/src/pages/channel.vue +++ b/packages/frontend/src/pages/channel.vue @@ -15,6 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only
+
{{ i18n.ts.youAreAdmin }}
{{ i18n.ts.sensitive }}
diff --git a/packages/frontend/src/pages/channels.vue b/packages/frontend/src/pages/channels.vue index 1e7301d06d..f77034e318 100644 --- a/packages/frontend/src/pages/channels.vue +++ b/packages/frontend/src/pages/channels.vue @@ -44,8 +44,8 @@ SPDX-License-Identifier: AGPL-3.0-only -
- +
+ {{ i18n.ts.createNew }}
@@ -126,15 +126,7 @@ async function search() { key.value = query + type; } -function create() { - router.push('/channels/new'); -} - -const headerActions = computed(() => [{ - icon: 'ti ti-plus', - text: i18n.ts.create, - handler: create, -}]); +const headerActions = computed(() => []); const headerTabs = computed(() => [{ key: 'search', -- cgit v1.2.3-freya