Skip to content

Commit 278dbf0

Browse files
fix: Fix icon
1 parent 7eb0c28 commit 278dbf0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

ui/src/components/folder-tree/constant.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ export const SORT_MENU_CONFIG = [
2626
],
2727
},
2828
{
29-
items: [{ label: t('components.folder.custom'), value: SORT_TYPES.CUSTOM }],
29+
items: [{ label: t('components.folder.sortDrop'), value: SORT_TYPES.CUSTOM }],
3030
},
3131
]

ui/src/components/resource_mapping/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@
101101
<KnowledgeIcon
102102
v-if="row.source_type === 'KNOWLEDGE'"
103103
class="mr-8"
104-
:size="16"
104+
:size="22"
105105
:type="row.icon"
106106
/>
107107
<el-avatar
108108
v-else-if="row.source_type === 'APPLICATION' && isAppIcon(row?.icon)"
109109
shape="square"
110-
:size="16"
110+
:size="22"
111111
style="background: none"
112112
class="mr-8"
113113
>

ui/src/layout/layout-header/top-menu/MenuItem.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const isActive = computed(() => {
4444
}
4545
4646
&:hover {
47-
color: var(--el-color-primary);
4847
background-color: var(--app-text-color-light-1);
4948
}
5049
&.active {

0 commit comments

Comments
 (0)