Skip to content

Commit a3ad51e

Browse files
committed
fix(System Settings): The Secret input field in the platform-integrated app should be set to "password" instead of "text".
1 parent 78e4cf0 commit a3ad51e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

frontend/src/components/layout/Menu.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ const routerList = computed(() => {
5656
!route.path.includes('training') &&
5757
!route.path.includes('prompt') &&
5858
!route.path.includes('permission') &&
59+
!route.path.includes('embeddedCommon') &&
5960
!route.path.includes('preview') &&
6061
!route.path.includes('audit') &&
6162
route.path !== '/login' &&

frontend/src/views/chat/ChatRow.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ const appearanceStore = useAppearanceStoreWithOut()
3030
height="28"
3131
/>
3232
<el-icon v-else-if="!hideAvatar">
33-
<custom_small v-if="appearanceStore.themeColor === 'custom'"></custom_small>
34-
<logo_fold v-else />
33+
<logo_fold v-if="appearanceStore.themeColor === 'default'" />
34+
<custom_small v-else></custom_small>
3535
</el-icon>
3636
</div>
3737
<div :class="{ 'row-full': msg.role === 'assistant', 'width-auto': msg.role === 'user' }">

frontend/src/views/system/platform/PlatformForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ defineExpose({
178178
:prop="setting.realKey"
179179
>
180180
<el-input
181-
v-if="setting.type === 'password'"
181+
v-if="setting.type === 'pwd'"
182182
v-model="state.form[setting.realKey]"
183183
type="password"
184184
show-password

0 commit comments

Comments
 (0)