From 165c8d2558828516a449c75edf3116f7dbc8c07c Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 26 Apr 2017 21:52:49 +0200 Subject: Fix travis lint tests --- client/src/app/app.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src/app') diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 14870bb5f..a6eb4cd2e 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts @@ -60,14 +60,14 @@ export class AppComponent implements OnInit { md: 10, sm: 9, xs: 9 - } + }; // Take all width is the menu is not displayed if (this.isMenuDisplayed === false) { Object.keys(colSizes).forEach(col => colSizes[col] = 12); } - const classes = [ "main-col" ]; + const classes = [ 'main-col' ]; Object.keys(colSizes).forEach(col => classes.push(`col-${col}-${colSizes[col]}`)); return classes; -- cgit v1.2.3