Fix a bug in sysinfo route with docker containers
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is passing
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			This commit is contained in:
		@@ -319,7 +319,7 @@ function DiskDetailsTable(p: { disks: DiskInfo[] }): React.ReactElement {
 | 
				
			|||||||
          {p.disks.map((e, c) => (
 | 
					          {p.disks.map((e, c) => (
 | 
				
			||||||
            <TableRow hover key={c}>
 | 
					            <TableRow hover key={c}>
 | 
				
			||||||
              <TableCell>{e.name}</TableCell>
 | 
					              <TableCell>{e.name}</TableCell>
 | 
				
			||||||
              <TableCell>{e.DiskKind}</TableCell>
 | 
					              <TableCell>{String(e.DiskKind)}</TableCell>
 | 
				
			||||||
              <TableCell>{e.mount_point}</TableCell>
 | 
					              <TableCell>{e.mount_point}</TableCell>
 | 
				
			||||||
              <TableCell>{filesize(e.total_space)}</TableCell>
 | 
					              <TableCell>{filesize(e.total_space)}</TableCell>
 | 
				
			||||||
              <TableCell>{filesize(e.available_space)}</TableCell>
 | 
					              <TableCell>{filesize(e.available_space)}</TableCell>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user