File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
webview-ui/src/components/settings Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1373,7 +1373,7 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
13731373 telemetrySetting : stateValues . telemetrySetting || "unset" ,
13741374 showRooIgnoredFiles : stateValues . showRooIgnoredFiles ?? true ,
13751375 maxReadFileLine : stateValues . maxReadFileLine ?? 500 ,
1376- maxConcurrentFileReads : stateValues . maxConcurrentFileReads ?? 1 ,
1376+ maxConcurrentFileReads : stateValues . maxConcurrentFileReads ?? 5 ,
13771377 historyPreviewCollapsed : stateValues . historyPreviewCollapsed ?? false ,
13781378 }
13791379 }
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export const ContextManagementSettings = ({
105105 < div className = "flex items-center gap-2" >
106106 < Slider
107107 min = { 1 }
108- max = { 15 }
108+ max = { 100 }
109109 step = { 1 }
110110 value = { [ maxConcurrentFileReads ?? 5 ] }
111111 onValueChange = { ( [ value ] ) => setCachedStateField ( "maxConcurrentFileReads" , value ) }
You can’t perform that action at this time.
0 commit comments