Skip to content

Commit 4c6e0b5

Browse files
authored
Fix progressive rendering for quick questions (microsoft#182792)
1 parent 4869f07 commit 4c6e0b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class InteractiveQuickPickSession extends Disposable {
188188
options,
189189
{
190190
getListLength: () => {
191-
return this._viewModel.getItems().length;
191+
return 1;
192192
},
193193
getSlashCommands() {
194194
return [];

0 commit comments

Comments
 (0)