diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-04-26 21:52:49 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-04-26 21:52:49 +0200 |
commit | 165c8d2558828516a449c75edf3116f7dbc8c07c (patch) | |
tree | 4abe534631e1f458474625b5e52af806f18615dd /client/src/app | |
parent | d61e81538bb67899c23881b6fe921cdee4a3e49a (diff) | |
download | PeerTube-165c8d2558828516a449c75edf3116f7dbc8c07c.tar.gz PeerTube-165c8d2558828516a449c75edf3116f7dbc8c07c.tar.zst PeerTube-165c8d2558828516a449c75edf3116f7dbc8c07c.zip |
Fix travis lint tests
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/app.component.ts | 4 |
1 files changed, 2 insertions, 2 deletions
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 { | |||
60 | md: 10, | 60 | md: 10, |
61 | sm: 9, | 61 | sm: 9, |
62 | xs: 9 | 62 | xs: 9 |
63 | } | 63 | }; |
64 | 64 | ||
65 | // Take all width is the menu is not displayed | 65 | // Take all width is the menu is not displayed |
66 | if (this.isMenuDisplayed === false) { | 66 | if (this.isMenuDisplayed === false) { |
67 | Object.keys(colSizes).forEach(col => colSizes[col] = 12); | 67 | Object.keys(colSizes).forEach(col => colSizes[col] = 12); |
68 | } | 68 | } |
69 | 69 | ||
70 | const classes = [ "main-col" ]; | 70 | const classes = [ 'main-col' ]; |
71 | Object.keys(colSizes).forEach(col => classes.push(`col-${col}-${colSizes[col]}`)); | 71 | Object.keys(colSizes).forEach(col => classes.push(`col-${col}-${colSizes[col]}`)); |
72 | 72 | ||
73 | return classes; | 73 | return classes; |