Skip to content

Commit 5d79dc2

Browse files
committed
feat(Smart Inquiry): The drawer width for execution details has been increased to half the screen width.
1 parent cc56429 commit 5d79dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/views/chat/ExecutionDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function getLogList(recordId: any) {
3939
}
4040
4141
const setDrawerSize = debounce(() => {
42-
drawerSize.value = window.innerWidth < 500 ? '460px' : '600px'
42+
drawerSize.value = window.innerWidth < 500 ? '460px' : `${window.innerWidth * 0.5}px`
4343
}, 500)
4444
4545
onMounted(() => {

0 commit comments

Comments
 (0)