From 137ca87668ed967199f3d65f1d7e10e691bbd20c Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Thu, 16 Jul 2020 16:10:00 -0500 Subject: [PATCH] broke up a long line --- src/angular/components/ciphers.component.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/angular/components/ciphers.component.ts b/src/angular/components/ciphers.component.ts index 0b0b8b1978..674f9b3efe 100644 --- a/src/angular/components/ciphers.component.ts +++ b/src/angular/components/ciphers.component.ts @@ -133,7 +133,9 @@ export class CiphersComponent { if (select) { this.selectAll(false); } - const selectCount = select && this.ciphers.length > this.maxCheckedCount ? this.maxCheckedCount : this.ciphers.length; + const selectCount = select && this.ciphers.length > this.maxCheckedCount + ? this.maxCheckedCount + : this.ciphers.length; for (let i = 0; i < selectCount; i++) { this.checkCipher(this.ciphers[i], select); }