Fix error message: "Cannot read properties of undefined (reading 'chatDynamicVariableModel')" (#199909)

Fix #199818
This commit is contained in:
Rob Lourens 2023-12-03 16:56:17 -06:00 committed by GitHub
parent 4b9608ccce
commit 967abeaacb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -403,7 +403,7 @@ export class ChatWidget extends Disposable implements IChatWidget {
this._register(this.inputPart.onDidLoadInputState(state => {
this.contribs.forEach(c => {
if (c.setInputState && state[c.id]) {
if (c.setInputState && typeof state === 'object' && state?.[c.id]) {
c.setInputState(state[c.id]);
}
});