We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4715477 commit 8c0ba1aCopy full SHA for 8c0ba1a
app/components/chat.tsx
@@ -143,6 +143,7 @@ export function SessionConfigModel(props: { onClose: () => void }) {
143
extraListItems={
144
session.mask.modelConfig.sendMemory ? (
145
<ListItem
146
+ className="copyable"
147
title={`${Locale.Memory.Title} (${session.lastSummarizeIndex} of ${session.messages.length})`}
148
subTitle={session.memoryPrompt || Locale.Memory.EmptyContent}
149
></ListItem>
app/styles/globals.scss
@@ -357,3 +357,7 @@ pre {
357
overflow: hidden;
358
text-overflow: ellipsis;
359
}
360
+
361
+.copyable {
362
+ user-select: text;
363
+}
0 commit comments