File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed
Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -269,11 +269,12 @@ function LegacyChatPanelComponent(
269269 const taskContextValue = useMemo (
270270 ( ) =>
271271 ( {
272+ conversationState,
272273 setActiveFile,
273274 setActiveImages,
274275 humanInput,
275276 } ) as TaskContextValue ,
276- [ humanInput ]
277+ [ conversationState , humanInput ]
277278 ) ;
278279
279280 useImperativeHandle (
Original file line number Diff line number Diff line change 22 display : flex;
33 align-items : center;
44 padding : 5px 8px ;
5- margin : 0 -8 px 12px ;
5+ margin : 0 0 12px ;
66 cursor : pointer;
77}
88
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ function PageContainerComponent({
8181 const header =
8282 pageTitle || breadcrumbs ?. length ? (
8383 < div className = "header" >
84- < nav >
84+ < nav className = { breadcrumbs ?. length ? "with-breadcrumbs" : "" } >
8585 { breadcrumbs ?. length ? (
8686 < ul className = "breadcrumbs" >
8787 { breadcrumbs . map ( ( item , index ) => (
Original file line number Diff line number Diff line change 6767}
6868
6969nav {
70- font-weight : 500 ;
71- font-size : 20 px ;
72- line-height : 28 px ;
70+ font-size : 28 px ;
71+ line-height : 40 px ;
72+ font-weight : 600 ;
7373 display : flex;
7474 min-width : 0 ;
7575 white-space : nowrap;
7676 flex-wrap : wrap;
7777}
7878
79+ nav .with-breadcrumbs {
80+ font-weight : 500 ;
81+ font-size : 20px ;
82+ line-height : 28px ;
83+ }
84+
7985h1 {
8086 margin : 0 ;
8187 font-size : inherit;
8288 line-height : inherit;
89+ font-weight : inherit;
8390}
8491
8592.breadcrumbs {
You can’t perform that action at this time.
0 commit comments