Skip to content

Commit 367e4af

Browse files
committed
fix: npm package
1 parent 576391b commit 367e4af

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

frontend/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@npkg/tinymce-plugins": "^0.0.7",
1414
"@tinymce/tinymce-vue": "^5.1.0",
1515
"dayjs": "^1.11.13",
16-
"element-plus": "^2.10.1",
16+
"element-plus-secondary": "^1.0.0",
1717
"lodash": "^4.17.21",
1818
"snowflake-id": "^1.1.0",
1919
"tinymce": "^5.8.2",
@@ -30,7 +30,6 @@
3030
"@vue/tsconfig": "^0.7.0",
3131
"axios": "^1.8.4",
3232
"crypto-js": "^4.2.0",
33-
"element-plus-secondary": "^1.0.0",
3433
"less": "^4.3.0",
3534
"pinia": "^3.0.2",
3635
"typescript": "~5.7.2",

frontend/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { computed } from 'vue'
3-
import { ElConfigProvider } from 'element-plus'
3+
import { ElConfigProvider } from 'element-plus-secondary'
44
import { getElementLocale } from '@/i18n'
55
const elLanguage = computed(() => {
66
return getElementLocale()

frontend/src/views/chat/ChatAnswer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
import type {ChatMessage} from "@/api/chat.ts";
44
import {computed, nextTick, ref} from "vue";
5-
import type {TabsPaneContext} from 'element-plus'
5+
import type {TabsPaneContext} from 'element-plus-secondary'
66
import {Loading} from "@element-plus/icons-vue";
77
import Component from "./component/Component.vue"
88

frontend/src/views/chat/component/Component.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ onUnmounted(() => {
7676
.chart-container {
7777
height: 100%;
7878
width: 100%;
79-
min-height: 80px;
80-
min-width: 100px;
79+
min-height: 200px;
80+
min-width: 200px;
8181
}
8282
</style>

0 commit comments

Comments
 (0)