Skip to content

Commit a088e21

Browse files
committed
fix: use hardcoded Chinese text for announcement option label
- Replace i18n reference with hardcoded '发公告' for announcement option - Ensure consistent display of announcement feature for admin users
1 parent a2241bc commit a088e21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/forum/ForumLocalNav.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const selectPublishTopicMenu = computed(() => {
6969
// 为管理员添加发公告选项
7070
if (isAdmin.value) {
7171
baseItems.push({
72-
label: message.value.forum.labels.ann,
72+
label: '发公告',
7373
icon: 'i-lucide-megaphone',
7474
action: () => {
7575
location.hash = 'PUBLISH-TOPIC-ANN'

0 commit comments

Comments
 (0)