Skip to content

Commit f8b61d4

Browse files
authored
Add missing 'Open Changes' tooltip (microsoft#269607)
Add missing 'Open Changes' tooltip (microsoft#269562)
1 parent 77a9703 commit f8b61d4

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export class ChatMultiDiffContentPart extends Disposable implements IChatContent
100100
private renderViewAllFileChangesButton(container: HTMLElement): IDisposable {
101101
const button = container.appendChild($('.chat-view-changes-icon'));
102102
button.classList.add(...ThemeIcon.asClassNameArray(Codicon.diffMultiple));
103+
button.title = localize('chatMultiDiff.openAllChanges', 'Open Changes');
103104

104105
return dom.addDisposableListener(button, 'click', (e) => {
105106
const source = URI.parse(`multi-diff-editor:${new Date().getMilliseconds().toString() + Math.random().toString()}`);

0 commit comments

Comments
 (0)