Skip to content

Commit

Permalink
Moving EvaluationTable component along with other solution-related co…
Browse files Browse the repository at this point in the history
…mponents.
  • Loading branch information
krulis-martin committed Jun 12, 2024
1 parent 0c3d6cf commit 30e0c75
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const EvaluationTable = ({ evaluations, renderButtons, selectedRowId = '' }) =>
})
.map((e, idx) => (
<tr key={e.id} className={selectedRowId === e.id ? 'activeRow' : ''}>
<td>
<td className="text-nowrap">
<span className="d-none d-xl-inline">
<AssignmentStatusIcon id={e.id} submission={e} accepted={false} />
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Button, { TheButtonGroup } from '../../widgets/TheButton';
import Callout from '../../widgets/Callout';
import Confirm from '../../forms/Confirm';
import Box from '../../widgets/Box';
import EvaluationTable from '../../ReferenceSolutions/EvaluationTable';
import EvaluationTable from '../../Solutions/EvaluationTable';
import Icon, { DeleteIcon } from '../../icons';

const deleteButton = (id, onDelete, confirmation = null) =>
Expand Down

0 comments on commit 30e0c75

Please sign in to comment.