File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -371,7 +371,11 @@ function refreshDocument(row: any) {
371
371
}
372
372
}
373
373
374
- function rowClickHandle(row : any ) {
374
+ function rowClickHandle(row : any , column : any ) {
375
+ if (column && column .type === ' selection' ) {
376
+ return
377
+ }
378
+
375
379
router .push ({ path: ` /dataset/${id }/${row .id } ` })
376
380
}
377
381
Original file line number Diff line number Diff line change @@ -264,7 +264,10 @@ const preChatRecord = () => {
264
264
}
265
265
}
266
266
267
- function rowClickHandle(row : any ) {
267
+ function rowClickHandle(row : any , column ? : any ) {
268
+ if (column && column .type === ' selection' ) {
269
+ return
270
+ }
268
271
currentChatId .value = row .id
269
272
currentAbstract .value = row .abstract
270
273
ChatRecordRef .value .open ()
Original file line number Diff line number Diff line change @@ -296,7 +296,10 @@ const preChatRecord = () => {
296
296
}
297
297
}
298
298
299
- function rowClickHandle(row : any ) {
299
+ function rowClickHandle(row : any , column ? : any ) {
300
+ if (column && column .type === ' selection' ) {
301
+ return
302
+ }
300
303
if (row .paragraph_count ) {
301
304
currentClickId .value = row .id
302
305
currentContent .value = row .content
You can’t perform that action at this time.
0 commit comments