We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a9703 commit f8b61d4Copy full SHA for f8b61d4
1 file changed
src/vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart.ts
@@ -100,6 +100,7 @@ export class ChatMultiDiffContentPart extends Disposable implements IChatContent
100
private renderViewAllFileChangesButton(container: HTMLElement): IDisposable {
101
const button = container.appendChild($('.chat-view-changes-icon'));
102
button.classList.add(...ThemeIcon.asClassNameArray(Codicon.diffMultiple));
103
+ button.title = localize('chatMultiDiff.openAllChanges', 'Open Changes');
104
105
return dom.addDisposableListener(button, 'click', (e) => {
106
const source = URI.parse(`multi-diff-editor:${new Date().getMilliseconds().toString() + Math.random().toString()}`);
0 commit comments