diff --git a/mateclaw-ui/src/components/chat/ChatInput.vue b/mateclaw-ui/src/components/chat/ChatInput.vue index 4c17e5f7..8aef9f0c 100644 --- a/mateclaw-ui/src/components/chat/ChatInput.vue +++ b/mateclaw-ui/src/components/chat/ChatInput.vue @@ -61,9 +61,7 @@
- - - + {{ t('chat.approvalAllow') }} {{ pendingApproval.toolName }} @@ -75,9 +73,7 @@ class="approval-bar__btn approval-bar__btn--deny" @click="emit('deny', pendingApproval.pendingId)" > - - - + {{ t('chat.deny') }}
@@ -210,6 +198,7 @@ import { ref, computed, onMounted, onBeforeUnmount, watch } from 'vue' import { useRoute, useRouter } from 'vue-router' import { useI18n } from 'vue-i18n' import { ElMessage } from 'element-plus' +import { ChatDotRound, Delete, Plus, Setting, UploadFilled } from '@element-plus/icons-vue' import { conversationApi, agentApi, modelApi, chatApi } from '@/api/index' import { channelIconUrl } from '@/utils/channelSource' import { useChat } from '@/composables/chat/useChat' @@ -1137,10 +1126,15 @@ function handleCodeCopy(e: MouseEvent) { diff --git a/mateclaw-ui/src/views/Dashboard.vue b/mateclaw-ui/src/views/Dashboard.vue index 8184ed12..12252719 100644 --- a/mateclaw-ui/src/views/Dashboard.vue +++ b/mateclaw-ui/src/views/Dashboard.vue @@ -1,7 +1,7 @@