Skip to content

Commit bd7ce47

Browse files
committed
fix: Packaging error
1 parent 4eebad8 commit bd7ce47

File tree

9 files changed

+13
-10
lines changed

9 files changed

+13
-10
lines changed

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"eslint-plugin-prettier": "^5.4.1",
6565
"eslint-plugin-vue": "^10.2.0",
6666
"globals": "^16.2.0",
67-
"less": "^4.3.0",
67+
"less": "4.4.2",
6868
"pinia": "^3.0.2",
6969
"prettier": "^3.5.3",
7070
"typescript": "~5.7.2",
@@ -76,4 +76,4 @@
7676
"vite-svg-loader": "^5.1.0",
7777
"vue-tsc": "^2.2.8"
7878
}
79-
}
79+
}

frontend/src/views/system/audit/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ const initOptions = () => {
275275
<div
276276
v-if="!searchLoading"
277277
class="table-content"
278-
:class="multipleSelectionAll?.length && 'show-pagination_height'"
278+
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
279279
>
280280
<filter-text
281281
:total="pageInfo.total"

frontend/src/views/system/embedded/Page.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ const copyCode = (row: any, key: any = 'app_secret') => {
356356
<div
357357
v-if="!searchLoading"
358358
class="table-content"
359-
:class="multipleSelectionAll.length && 'show-pagination_height'"
359+
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
360360
>
361361
<template v-if="!oldKeywords && !fieldList.length">
362362
<EmptyBackground

frontend/src/views/system/member/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ const handleCurrentChange = (val: number) => {
240240
</el-button>
241241
</div>
242242
</div>
243-
<div class="table-content" :class="multipleSelectionAll.length && 'show-pagination_height'">
243+
<div class="table-content" :class="multipleSelectionAll.length ? 'show-pagination_height' : ''">
244244
<div class="preview-or-schema">
245245
<el-table
246246
ref="multipleTableRef"

frontend/src/views/system/professional/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ const changeStatus = (id: any, val: any) => {
470470
<div
471471
v-if="!searchLoading"
472472
class="table-content"
473-
:class="multipleSelectionAll?.length && 'show-pagination_height'"
473+
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
474474
>
475475
<filter-text
476476
:total="pageInfo.total"

frontend/src/views/system/prompt/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ const drawerMainClose = () => {
506506
<div
507507
v-if="!searchLoading"
508508
class="table-content"
509-
:class="multipleSelectionAll?.length && 'show-pagination_height'"
509+
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
510510
>
511511
<filter-text
512512
:total="pageInfo.total"

frontend/src/views/system/training/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ const onRowFormClose = () => {
393393
<div
394394
v-if="!searchLoading"
395395
class="table-content"
396-
:class="multipleSelectionAll?.length && 'show-pagination_height'"
396+
:class="multipleSelectionAll?.length ? 'show-pagination_height' : ''"
397397
>
398398
<div class="preview-or-schema">
399399
<el-table

frontend/src/views/system/variables/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ const handleCurrentChange = (val: number) => {
310310
<div
311311
v-if="!searchLoading"
312312
class="table-content"
313-
:class="multipleSelectionAll.length && 'show-pagination_height'"
313+
:class="multipleSelectionAll.length ? 'show-pagination_height' : ''"
314314
>
315315
<template v-if="!oldKeywords && !fieldList.length">
316316
<EmptyBackground

frontend/src/views/system/workspace/index.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,10 @@ const handleCurrentChange = (val: number) => {
428428
</el-input>
429429
</div>
430430
</div>
431-
<div class="table-content" :class="multipleSelectionAll.length && 'show-pagination_height'">
431+
<div
432+
class="table-content"
433+
:class="{ 'show-pagination_height': multipleSelectionAll.length > 0 }"
434+
>
432435
<div class="preview-or-schema">
433436
<el-table
434437
ref="multipleTableRef"

0 commit comments

Comments
 (0)