Resolve IA-669 "Feature/"
4 fils de conversation non résolus
4 fils de conversation non résolus
Closes IA-669
Rapports de requête de fusion
Activité
Filtrer l'activité
assigned to @brahim.elfahim
@brahim.elfahim this has been mentioned before, please avoid pushing dead code
changed this file in version 2 of the diff
125 <TableCell sx={appliedStyle}>{formatDate(row.createdAt)}</TableCell> 110 126 )} 111 127 {visibleColumns.educationLevel && ( 112 <TableCell sx={appliedStyle}>{row.educationLevel || '-'}</TableCell> 128 <TableCell sx={appliedStyle}> 129 {' '} 130 {educationLevelOptions.find((option) => option.value === row.levelId)?.label || '-'} 131 </TableCell> 132 )} 133 {visibleColumns.subject && ( 134 <TableCell sx={appliedStyle}> 135 {' '} 136 {subjectOptions.find((option) => option.value === row.subjectId)?.label || '-'} 137 </TableCell> 138 )} 139 {visibleColumns.chapter && <TableCell sx={appliedStyle}>{' '} changed this line in version 2 of the diff
106 122 </TableCell> 107 123 )} 108 124 {visibleColumns.dateAjoute && ( 109 <TableCell sx={appliedStyle}>{formatDate(row.dateAjoute)}</TableCell> 125 <TableCell sx={appliedStyle}>{formatDate(row.createdAt)}</TableCell> 110 126 )} 111 127 {visibleColumns.educationLevel && ( 112 <TableCell sx={appliedStyle}>{row.educationLevel || '-'}</TableCell> 128 <TableCell sx={appliedStyle}> 129 {' '} 130 {educationLevelOptions.find((option) => option.value === row.levelId)?.label || '-'} 131 </TableCell> 132 )} 133 {visibleColumns.subject && ( changed this line in version 2 of the diff
111 127 {visibleColumns.educationLevel && ( 112 <TableCell sx={appliedStyle}>{row.educationLevel || '-'}</TableCell> 128 <TableCell sx={appliedStyle}> 129 {' '} 130 {educationLevelOptions.find((option) => option.value === row.levelId)?.label || '-'} 131 </TableCell> 132 )} 133 {visibleColumns.subject && ( 134 <TableCell sx={appliedStyle}> 135 {' '} 136 {subjectOptions.find((option) => option.value === row.subjectId)?.label || '-'} 137 </TableCell> 138 )} 139 {visibleColumns.chapter && <TableCell sx={appliedStyle}>{' '} 140 {chapterOptions.find((option) => option.value === row.chapterId)?.label || '-'}</TableCell>} 141 {visibleColumns.exercise && ( changed this line in version 2 of the diff
mentioned in commit 7650d643
Veuillez vous inscrire ou vous connecter pour répondre