File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/vs/workbench/contrib/chat/browser Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ export class ChatSessionsView extends Disposable implements IWorkbenchContributi
309309 private updateViewContainerRegistration ( ) : void {
310310 const location = this . configurationService . getValue < string > ( ChatConfiguration . AgentSessionsViewLocation ) ;
311311 const sentiment = this . chatEntitlementService . sentiment ;
312- if ( sentiment . disabled || ( location !== 'view' && this . isViewContainerRegistered ) ) {
312+ if ( sentiment . disabled || sentiment . hidden || ( location !== 'view' && this . isViewContainerRegistered ) ) {
313313 this . deregisterViewContainer ( ) ;
314314 } else if ( location === 'view' && ! this . isViewContainerRegistered ) {
315315 this . registerViewContainer ( ) ;
You can’t perform that action at this time.
0 commit comments