Side menu shown when aside.display
is false
Thank you for your reply,
I'm using react/demo1,
It works in html/demo but not in react/demo1
regards
Hi,
Thanks for your note, added this into the development backlog as a bug.
Regards,
Keenthemes support
Hi,
Thank you for your message.
It depends on the demo, in some demos we don't hide aside cause the design doesn't have the view without aside.
Regards,
Keenthemes support
<b>src/_metronic/layout/MasterLayout.tsx</b>
Temporary fix
//...
const {config} = useLayout()
const {aside} = config
// ...
return (
<PageDataProvider>
<div className='page d-flex flex-row flex-column-fluid'>
{aside.display && (
<AsideDefault />
)}
...