Skip to content

Commit 2adb872

Browse files
fix: Application dialogue history error(#3223)
1 parent a0b6aaa commit 2adb872

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ui/src/views/chat/embed/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ function getChatRecord() {
265265
currentChatId.value,
266266
paginationConfig,
267267
loading,
268-
false
268+
true
269269
)
270270
.then((res: any) => {
271271
paginationConfig.total = res.data.total

ui/src/views/chat/mobile/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ function getChatRecord() {
261261
currentChatId.value,
262262
paginationConfig,
263263
loading,
264-
false
264+
true
265265
)
266266
.then((res: any) => {
267267
paginationConfig.total = res.data.total

ui/src/views/chat/pc/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function getChatRecord() {
315315
currentChatId.value,
316316
paginationConfig.value,
317317
loading,
318-
false
318+
true
319319
)
320320
.then((res: any) => {
321321
paginationConfig.value.total = res.data.total

0 commit comments

Comments
 (0)