fix const

This commit is contained in:
Eugenio Romano
2019-03-27 11:53:53 +00:00
parent 070bf020a7
commit b55203cec7
2 changed files with 10 additions and 10 deletions

View File

@@ -66,7 +66,7 @@ export class LockService {
}
private isLockExpired(node: Node): boolean {
let expiryLockTime = this.getLockExpiryTime(node);
const expiryLockTime = this.getLockExpiryTime(node);
return moment().isAfter(expiryLockTime);
}
}