Skip to content

Commit

Permalink
fix: fixed temporalconstraints deletion - Ref gestion-de-projet#1286
Browse files Browse the repository at this point in the history
  • Loading branch information
ManelleG committed Apr 12, 2023
1 parent 9788282 commit 9a8f31c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const EventSequenceTable: React.FC<{ temporalConstraints: TemporalConstraintsTyp
</TableRow>
</TableHead>
<TableBody>
{!temporalConstraints || temporalConstraints?.length === 1 ? (
{!temporalConstraints || temporalConstraints.length === 0 ? (
<TableRow>
<TableCell colSpan={7}>
<Typography className={classes.loadingSpinnerContainer}>
Expand Down

0 comments on commit 9a8f31c

Please sign in to comment.