Rom89823974978 commited on
Commit
44d234f
·
1 Parent(s): 3dd24eb
frontend/src/components/ProjectExplorer.tsx CHANGED
@@ -229,12 +229,13 @@ const ProjectExplorer: React.FC<ProjectExplorerProps> = ({
229
  cursor="pointer"
230
  _hover={{ bg: "gray.100" }}
231
  >
232
- <Td overflow="hidden" textOverflow="ellipsis">{p.title}</Td>
233
- <Td>{p.status}</Td>
234
- <Td>{p.id}</Td>
235
- <Td whiteSpace="nowrap">{new Date(p.startDate).toISOString().slice(0, 10)}</Td>
236
- <Td>{p.fundingScheme}</Td>
237
- <Td>€{fmtNum(p.ecMaxContribution)}</Td>
 
238
  </Tr>
239
  ))}
240
  </Tbody>
 
229
  cursor="pointer"
230
  _hover={{ bg: "gray.100" }}
231
  >
232
+ <Td w="50%" overflow="hidden" textOverflow="ellipsis">{p.title}</Td>
233
+ <Td w="10%">{p.status}</Td>
234
+ <Td w="10%">{p.id}</Td>
235
+ <Td w="10%" whiteSpace="nowrap">{new Date(p.startDate).toISOString().slice(0,10)}</Td>
236
+ <Td w="10%">{p.fundingScheme || '-'}</Td>
237
+ <Td w="10%">€{fmtNum(p.ecMaxContribution)}</Td>
238
+
239
  </Tr>
240
  ))}
241
  </Tbody>