Skip to content

Commit

Permalink
chore: drives list
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Jan 11, 2024
1 parent 2523aad commit 268ce4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tabs/jupyterlab/Drives.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const Drives = (props: DatalayerProps) => {
<Box>
<h3>Default Drive</h3>
<Text>{defaultDrive?.name}</Text>
<Label style={{marginLeft: 3}}>{defaultDrive?.sharedModelFactory?.collaborative ? 'collaborative' : 'non collaborative'}</Label>
</Box>
{ drives &&
<Table.Container>
Expand All @@ -62,7 +63,7 @@ const Drives = (props: DatalayerProps) => {
{
header: 'Shared Model Factory',
field: 'sharedModelFactory',
renderCell: row => <Label>{String(row.sharedModelFactory?.collaborative ? 'collaborative' : 'non collaborative')}</Label>
renderCell: row => <Label>{row.sharedModelFactory?.collaborative ? 'collaborative' : 'non collaborative'}</Label>
},
]}
/>
Expand Down

0 comments on commit 268ce4d

Please sign in to comment.