Merge pull request #3190 from Yidadaa/bugfix-1109

This commit is contained in:
Yifei Zhang 2023-11-09 01:54:09 +08:00 committed by GitHub
commit 1304a3943a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -143,6 +143,7 @@ export function SessionConfigModel(props: { onClose: () => void }) {
extraListItems={ extraListItems={
session.mask.modelConfig.sendMemory ? ( session.mask.modelConfig.sendMemory ? (
<ListItem <ListItem
className="copyable"
title={`${Locale.Memory.Title} (${session.lastSummarizeIndex} of ${session.messages.length})`} title={`${Locale.Memory.Title} (${session.lastSummarizeIndex} of ${session.messages.length})`}
subTitle={session.memoryPrompt || Locale.Memory.EmptyContent} subTitle={session.memoryPrompt || Locale.Memory.EmptyContent}
></ListItem> ></ListItem>

View File

@ -357,3 +357,7 @@ pre {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.copyable {
user-select: text;
}