Skip to content

Commit 1941240

Browse files
committed
Fix used references expand state
1 parent d0bff74 commit 1941240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/common/chatViewModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ export class ChatResponseViewModel extends Disposable implements IChatResponseVi
328328
return this._usedReferencesExpanded;
329329
}
330330

331-
return !this.isComplete;
331+
return this.response.value.length === 0;
332332
}
333333

334334
set usedReferencesExpanded(v: boolean) {

0 commit comments

Comments
 (0)