Skip to content

Commit a66e103

Browse files
committed
fix(models): spacing around ternary operator
1 parent 9daedec commit a66e103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

calm-models/src/model/moment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class CalmMoment extends CalmNode implements CalmAdaptable<CalmMomentSche
5252
description,
5353
validFrom,
5454
CalmNodeDetails.fromSchema(details),
55-
controls? CalmControls.fromSchema(controls): undefined,
55+
controls ? CalmControls.fromSchema(controls) : undefined,
5656
metadata ? CalmMetadata.fromSchema(metadata) : undefined,
5757
adrs,
5858
Object.keys(additional).length > 0 ? additional : undefined

0 commit comments

Comments
 (0)