File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed
tools/server/webui/src/components Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -274,22 +274,23 @@ function ThoughtProcess({
274274 tabIndex = { 0 }
275275 className = { classNames ( {
276276 'collapse bg-none' : true ,
277- 'collapse-open' : open ,
278277 } ) }
279278 >
280- < input type = "checkbox" />
279+ < input type = "checkbox" defaultChecked = { open } />
281280 < div className = "collapse-title px-0" >
282- { isThinking ? (
283- < span >
284- < span
285- className = "loading loading-spinner loading-md mr-2"
286- style = { { verticalAlign : 'middle' } }
287- > </ span >
288- < b > Thinking</ b >
289- </ span >
290- ) : (
291- < b > Thought Process</ b >
292- ) }
281+ < div className = "btn rounded-xl" >
282+ { isThinking ? (
283+ < span >
284+ < span
285+ className = "loading loading-spinner loading-md mr-2"
286+ style = { { verticalAlign : 'middle' } }
287+ > </ span >
288+ < b > Thinking</ b >
289+ </ span >
290+ ) : (
291+ < b > Thought Process</ b >
292+ ) }
293+ </ div >
293294 </ div >
294295 < div className = "collapse-content text-base-content/70 text-sm p-1" >
295296 < div className = "border-l-2 border-base-content/20 pl-4 mb-4" >
You can’t perform that action at this time.
0 commit comments