We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9647599 commit d1388fdCopy full SHA for d1388fd
src/vs/workbench/contrib/chat/browser/actions/chatActions.ts
@@ -152,7 +152,7 @@ class ChatHistoryAction extends Action2 {
152
153
let lastDate: string | undefined = undefined;
154
const picks = items.flatMap((i): [IQuickPickSeparator | undefined, IChatPickerItem] => {
155
- const timeAgoStr = fromNowByDay(i.lastMessageDate, true);
+ const timeAgoStr = fromNowByDay(i.lastMessageDate, true, true);
156
const separator: IQuickPickSeparator | undefined = timeAgoStr !== lastDate ? {
157
type: 'separator', label: timeAgoStr,
158
} : undefined;
0 commit comments