Skip to content

Commit b10bd56

Browse files
authored
Merge branch 'release/1.103' into eli/release-notes-update-103
2 parents 700b204 + 7c93c1f commit b10bd56

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/vs/workbench/contrib/chat/browser/chat.contribution.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,9 @@ configurationRegistry.registerConfiguration({
549549
default: false,
550550
description: nls.localize('chat.todoListTool.enabled', "Enables todo lists in chat. This tool allows you to use todo lists in chat."),
551551
tags: ['experimental'],
552-
included: false,
552+
experiment: {
553+
mode: 'startup'
554+
}
553555
},
554556
'chat.tools.useTreePicker': {
555557
type: 'boolean',

src/vs/workbench/contrib/chat/browser/media/chat.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2365,9 +2365,8 @@ display: none;
23652365
top: 0;
23662366
z-index: 100;
23672367
background-color: var(--vscode-sideBar-background);
2368-
border-bottom: 1px solid var(--vscode-chat-requestBorder);
23692368
padding: 8px 16px;
2370-
margin-bottom: 8px;
2369+
box-shadow: 0 2px 4px var(--vscode-scrollbar-shadow);
23712370
}
23722371

23732372
.chat-todo-list-widget .todo-list-expand {

src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { ContextKeyExpr } from '../../../../../platform/contextkey/common/contex
2323

2424
export const TodoListToolSettingId = 'chat.todoListTool.enabled';
2525

26-
export const ManageTodoListToolToolId = 'vscode_manageTodoList';
26+
export const ManageTodoListToolToolId = 'manage_todo_list';
2727

2828
export const ManageTodoListToolData: IToolData = {
2929
id: ManageTodoListToolToolId,

0 commit comments

Comments
 (0)