This commit is contained in:
Mathew Pareles 2025-01-21 18:55:15 -08:00
parent 4e0dd8f8db
commit 24e276ba47
2 changed files with 3 additions and 0 deletions

View file

@ -104,6 +104,7 @@ export const SidebarThreadSelector = () => {
flex items-center
`}
onClick={() => chatThreadsService.switchToThread(pastThread.id)}
onDoubleClick={() => sidebarStateService.setState({ isHistoryOpen: false })}
title={new Date(pastThread.createdAt).toLocaleString()}
>
<div className='truncate'>{`${firstMsg}`}</div>

View file

@ -687,6 +687,8 @@ export const VoidCodeEditor = ({ initValue, language, maxHeight, showScrollbars
// maxColumn: 0,
},
hover: { enabled: false },
selectionHighlight: false, // highlights whole words
renderLineHighlight: 'none',