Skip to content

Commit 543210b

Browse files
perf: perf
1 parent bc85b91 commit 543210b

File tree

18 files changed

+83
-50
lines changed

18 files changed

+83
-50
lines changed
Lines changed: 4 additions & 3 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading

ui/src/assets/workflow/icon_tool_outlined.svg

Lines changed: 0 additions & 12 deletions
This file was deleted.

ui/src/locales/lang/en-US/ai-chat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default {
3838
answerMessage:
3939
'Sorry, no relevant content found. Please rephrase your question or provide more details.',
4040
stopAnswer: 'Response Stopped',
41-
answerLoading: 'Generating Response...',
41+
answerLoading: 'Generating Response',
4242
recorderTip: `<p>This feature requires microphone access. Browsers block recording on insecure pages. Solutions:<br/>
4343
1. Enable HTTPS;<br/>
4444
2. If HTTPS is not available, adjust browser security settings. For Chrome:<br/>

ui/src/styles/component.scss

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,33 @@
204204
}
205205
}
206206

207+
@-webkit-keyframes dot {
208+
25% {
209+
border-color: transparent;
210+
background-color: transparent;
211+
}
212+
50% {
213+
border-right-color: transparent;
214+
background-color: transparent;
215+
}
216+
75% {
217+
border-right-color: transparent;
218+
}
219+
}
220+
@keyframes dot {
221+
25% {
222+
border-color: transparent;
223+
background-color: transparent;
224+
}
225+
50% {
226+
border-right-color: transparent;
227+
background-color: transparent;
228+
}
229+
75% {
230+
border-right-color: transparent;
231+
}
232+
}
233+
207234
// checkbox 一行一个样式
208235
.checkbox-group-block {
209236
.el-checkbox {

ui/src/views/application-workflow/component/NodeContent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<img :src="resetUrl(item?.icon)" alt="" />
2020
</el-avatar>
2121
<el-avatar v-else class="avatar-green" shape="square" :size="32">
22-
<img src="@/assets/node/icon_tool.svg" style="width: 58%" alt="" />
22+
<img src="@/assets/workflow/icon_tool.svg" style="width: 58%" alt="" />
2323
</el-avatar>
2424
<span class="ml-8 ellipsis">{{ item.name }}</span>
2525
</div>
@@ -33,7 +33,7 @@
3333
<img :src="resetUrl(item?.icon)" alt="" />
3434
</el-avatar>
3535
<el-avatar v-else class="avatar-green" shape="square" :size="32">
36-
<img src="@/assets/node/icon_tool.svg" style="width: 58%" alt="" />
36+
<img src="@/assets/workflow/icon_tool.svg" style="width: 58%" alt="" />
3737
</el-avatar>
3838
<span class="font-medium ml-8">{{ item.name }}</span>
3939
</div>

ui/src/views/chat/user-login/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
:rules="rules"
4545
:model="loginForm"
4646
ref="loginFormRef"
47-
@keyup.enter="login"
47+
@keyup.enter="loginHandle"
4848
>
4949
<div class="mb-24">
5050
<el-form-item prop="username">

ui/src/views/paragraph/index.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@
5858
@click="handleClick"
5959
>
6060
<template v-for="(item, index) in paragraphDetail" :key="item.id">
61-
<el-anchor-link :href="`#m${item.id}`" :title="item.title" v-if="item.title" />
61+
<el-anchor-link :href="`#m${item.id}`" :title="item.title" v-if="item.title">
62+
<span :title="item.title">
63+
{{ item.title }}
64+
</span>
65+
</el-anchor-link>
6266
</template>
6367
</el-anchor>
6468
</el-scrollbar>

ui/src/views/system-resource-management/ApplicationResourceIndex.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<img :src="resetUrl(scope.row?.icon)" alt="" />
6262
</el-avatar>
6363
<el-avatar v-else class="avatar-green" shape="square" :size="24">
64-
<img src="@/assets/node/icon_tool.svg" style="width: 58%" alt="" />
64+
<img src="@/assets/workflow/icon_tool.svg" style="width: 58%" alt="" />
6565
</el-avatar>
6666
</el-icon>
6767
{{ scope.row.name }}

0 commit comments

Comments
 (0)