Skip to content

Commit e609725

Browse files
committed
fix: input bug when edit chat session
1 parent f9c4f20 commit e609725

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/pages/chat_edit.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class ChatEditPage extends StatelessWidget {
138138
onChanged: (value) {
139139
// controller.settings.apiKey = value;
140140
controller.currentSession.name = value;
141-
titleEditingController.text = value;
141+
// titleEditingController.text = value;
142142
// controller.update();
143143
},
144144
),
@@ -164,7 +164,7 @@ class ChatEditPage extends StatelessWidget {
164164
maxLines: 4,
165165
onChanged: (value) {
166166
controller.currentSession.promptContent = value;
167-
promptEditingController.text = value;
167+
// promptEditingController.text = value;
168168
// controller.update();
169169
},
170170
),

0 commit comments

Comments
 (0)