Skip to content

Commit d38f889

Browse files
authored
Add tooltip for clear chat history (#1276)
1 parent 3fcf209 commit d38f889

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/app/view/waveai/waveai.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,11 @@ export class WaveAiModel implements ViewModel {
252252
});
253253
return viewTextChildren;
254254
});
255-
this.endIconButtons = atom((get) => {
255+
this.endIconButtons = atom((_) => {
256256
let clearButton: IconButtonDecl = {
257257
elemtype: "iconbutton",
258258
icon: "delete-left",
259+
title: "Clear Chat History",
259260
click: this.clearMessages.bind(this),
260261
};
261262
return [clearButton];

0 commit comments

Comments
 (0)