Skip to content

Commit 6d9785c

Browse files
Update src/screens/JobProposal/SpecsView.tsx
fix spec id comparison Co-authored-by: Copilot <[email protected]>
1 parent 8dab59c commit 6d9785c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/screens/JobProposal/SpecsView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export const SpecsView = withStyles(styles)(
228228
color="primary"
229229
onClick={() =>
230230
openConfirmationDialog(
231-
specID == latestSpec.id ? 'approve' : 'approvePrevious',
231+
specID === latestSpec.id ? 'approve' : 'approvePrevious',
232232
specID,
233233
)
234234
}

0 commit comments

Comments
 (0)