Skip to content

Commit 3e5a994

Browse files
committed
fix(AutoDevInputSection): add newline before file list in input return
1 parent 2203f18 commit 3e5a994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/kotlin/cc/unitmesh/devti/gui/chat/ui/AutoDevInputSection.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class AutoDevInputSection(private val project: Project, val disposable: Disposab
103103
relatedFileListViewModel.clearAllFiles()
104104
val files = workspaceFilePanel.getAllFilesFormat()
105105
workspaceFilePanel.clear()
106-
return input.text + files
106+
return input.text + "\n" + files
107107
}
108108

109109
fun clearText() {

0 commit comments

Comments
 (0)