From 0be0a031cc9d93000c561fcdef309ccb90649715 Mon Sep 17 00:00:00 2001 From: lijisanxiong <1518062161@qq.com> Date: Mon, 19 Aug 2024 20:36:35 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E6=9B=B4=E6=96=B0=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E6=A0=8F=E9=80=82=E9=85=8D=E9=9A=90=E8=97=8F=E7=9A=84?= =?UTF-8?q?=E5=88=86=E7=BB=84=E9=A1=B9=E6=98=BE=E7=A4=BA=E7=9A=84=E6=9B=B4?= =?UTF-8?q?=E5=A4=9A=E6=9B=BF=E6=8D=A2=E4=B8=BA=E6=BF=80=E6=B4=BB=E9=A1=B9?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/control/search-bar/search-groups/search-groups.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/control/search-bar/search-groups/search-groups.tsx b/src/control/search-bar/search-groups/search-groups.tsx index b2ed53bac..171100351 100644 --- a/src/control/search-bar/search-groups/search-groups.tsx +++ b/src/control/search-bar/search-groups/search-groups.tsx @@ -270,7 +270,9 @@ export const SearchGroups = defineComponent({ this.ns.is('selected', this.isActiveMore), ]} > - {this.c.model.groupMoreText || ibiz.i18n.t('app.more')} + {this.isActiveMore + ? this.c.state.selectedSearchGroupItem?.caption + : this.c.model.groupMoreText || ibiz.i18n.t('app.more')} ), -- Gitee