agent sessions - remove hideNewButtonInAgentSessionsView setting

This commit is contained in:
Benjamin Pasero
2025-11-26 14:52:58 +01:00
parent 42cb4bce4c
commit 8bd1bf35bb
2 changed files with 1 additions and 9 deletions

View File

@@ -98,9 +98,7 @@ export class AgentSessionsView extends ViewPane {
container.classList.add('agent-sessions-view');
// New Session
if (!this.configurationService.getValue('chat.hideNewButtonInAgentSessionsView')) {
this.createNewSessionButton(container);
}
this.createNewSessionButton(container);
// Sessions Control
this.createSessionsControl(container);

View File

@@ -786,12 +786,6 @@ configurationRegistry.registerConfiguration({
mode: 'auto'
}
},
'chat.hideNewButtonInAgentSessionsView': { // TODO@bpasero remove me eventually
type: 'boolean',
description: nls.localize('chat.hideNewButtonInAgentSessionsView', "Controls whether the new session button is hidden in the Agent Sessions view."),
default: false,
tags: ['preview']
},
'chat.signInWithAlternateScopes': { // TODO@bpasero remove me eventually
type: 'boolean',
description: nls.localize('chat.signInWithAlternateScopes', "Controls whether sign-in with alternate scopes is used."),