Sort properties

This commit is contained in:
Nicola Benaglia 2025-05-30 08:16:49 +02:00
parent 06f0d45677
commit 5215e7ad5b

View File

@ -524,12 +524,12 @@ export const AppsDesktop = ({
} }
return ( return (
<AppViewerContainer <AppViewerContainer
key={tab?.tabId}
hide={isNewTabWindow}
isSelected={tab?.tabId === selectedTab?.tabId}
app={tab} app={tab}
ref={iframeRefs.current[tab.tabId]} hide={isNewTabWindow}
isDevMode={tab?.service ? false : true} isDevMode={tab?.service ? false : true}
isSelected={tab?.tabId === selectedTab?.tabId}
key={tab?.tabId}
ref={iframeRefs.current[tab.tabId]}
/> />
); );
})} })}
@ -539,20 +539,20 @@ export const AppsDesktop = ({
<Box <Box
sx={{ sx={{
display: 'flex', display: 'flex',
width: '100%',
flexDirection: 'column', flexDirection: 'column',
height: '100vh', height: '100vh',
overflow: 'auto', overflow: 'auto',
width: '100%',
}} }}
> >
<Spacer height="30px" /> <Spacer height="30px" />
<AppsHomeDesktop <AppsHomeDesktop
myName={myName}
availableQapps={availableQapps} availableQapps={availableQapps}
setMode={setMode}
myApp={myApp} myApp={myApp}
myName={myName}
myWebsite={myWebsite} myWebsite={myWebsite}
setMode={setMode}
/> />
</Box> </Box>
</> </>