diff --git a/ui/src/styles/component.scss b/ui/src/styles/component.scss index a268bd26b..902785f64 100644 --- a/ui/src/styles/component.scss +++ b/ui/src/styles/component.scss @@ -165,6 +165,7 @@ border-radius: var(--el-border-radius-base) !important; padding: 5px 8px; font-weight: 400; + color: var(--el-text-color-primary) !important; } .el-radio-button__original-radio:checked + .el-radio-button__inner { color: var(--el-color-primary) !important; diff --git a/ui/src/views/application-workflow/component/DropdownMenu.vue b/ui/src/views/application-workflow/component/DropdownMenu.vue index ea1eb0649..877b53a75 100644 --- a/ui/src/views/application-workflow/component/DropdownMenu.vue +++ b/ui/src/views/application-workflow/component/DropdownMenu.vue @@ -157,9 +157,6 @@ const apiType = computed(() => { const permissionPrecise = computed(() => { return permissionMap['tool'][apiType.value] }) -const isShared = computed(() => { - return folder.currentFolder.id === 'share' -}) const loading = ref(false) const activeName = ref('base') @@ -278,7 +275,9 @@ async function getApplicationList() { }).getAllApplication({ folder_id: folder.currentFolder?.id || user.getWorkspaceId(), }) - applicationList.value = res.data.filter((item: any) => item.resource_type === 'application') + applicationList.value = res.data.filter( + (item: any) => item.resource_type === 'application' && item.id !== props.id, + ) } function folderClickHandle(row: any) { diff --git a/ui/src/views/system-chat-user/authentication/component/CAS.vue b/ui/src/views/system-chat-user/authentication/component/CAS.vue index cd638d742..9b822d737 100644 --- a/ui/src/views/system-chat-user/authentication/component/CAS.vue +++ b/ui/src/views/system-chat-user/authentication/component/CAS.vue @@ -9,10 +9,7 @@ label-position="top" require-asterisk-position="right" > - + {{ $t('views.system.authentication.cas.enableAuthentication') }} + >{{ $t('views.system.authentication.cas.enableAuthentication') }} -
- + {{ $t('common.save') }} @@ -59,13 +62,13 @@