-
Notifications
You must be signed in to change notification settings - Fork 2.3k
feat(web): add configurable sidebar thread preview count #1856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
93095a2
321a395
e4c541a
9573ebf
ccf24c1
9dc6c1b
fdba6cc
93be670
6bdd122
f1eba1d
272bf9d
9a56980
5dd1acf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -364,6 +364,9 @@ export function useSettingsRestore(onRestored?: () => void) { | |
| ...(settings.timestampFormat !== DEFAULT_UNIFIED_SETTINGS.timestampFormat | ||
| ? ["Time format"] | ||
| : []), | ||
| ...(settings.sidebarThreadPreviewCount !== DEFAULT_UNIFIED_SETTINGS.sidebarThreadPreviewCount | ||
| ? ["Visible threads"] | ||
| : []), | ||
| ...(settings.diffWordWrap !== DEFAULT_UNIFIED_SETTINGS.diffWordWrap | ||
| ? ["Diff line wrapping"] | ||
| : []), | ||
|
|
@@ -400,6 +403,7 @@ export function useSettingsRestore(onRestored?: () => void) { | |
| settings.diffIgnoreWhitespace, | ||
| settings.diffWordWrap, | ||
| settings.enableAssistantStreaming, | ||
| settings.sidebarThreadPreviewCount, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Restore defaults omits new thread preview count settingMedium Severity The Additional Locations (1)Reviewed by Cursor Bugbot for commit f1eba1d. Configure here. |
||
| settings.timestampFormat, | ||
| theme, | ||
| ], | ||
|
|
||


Uh oh!
There was an error while loading. Please reload this page.