Skip to content

Commit d1388fd

Browse files
authored
Use full time labels in chat history (#226922)
1 parent 9647599 commit d1388fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class ChatHistoryAction extends Action2 {
152152

153153
let lastDate: string | undefined = undefined;
154154
const picks = items.flatMap((i): [IQuickPickSeparator | undefined, IChatPickerItem] => {
155-
const timeAgoStr = fromNowByDay(i.lastMessageDate, true);
155+
const timeAgoStr = fromNowByDay(i.lastMessageDate, true, true);
156156
const separator: IQuickPickSeparator | undefined = timeAgoStr !== lastDate ? {
157157
type: 'separator', label: timeAgoStr,
158158
} : undefined;

0 commit comments

Comments
 (0)