javascript lint fix

This commit is contained in:
Scott Lamb 2020-03-14 15:13:11 -07:00
parent 3968bfe912
commit 038aebe0fd
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ export default class Recording {
this.openId = recordingJson.openId;
/** @const {?number} */
this.firstUncommitted = recordingJson.firstUncommitted !== undefined
? recordingJson.firstUncommitted : null;
this.firstUncommitted = recordingJson.firstUncommitted !== undefined ?
recordingJson.firstUncommitted : null;
/** @const {!boolean} */
this.growing = recordingJson.growing || false;