Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit 628bad6

Browse files
committed
Make lint pass
1 parent 71c7cd5 commit 628bad6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/app/app.component.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Component } from '@angular/core';
33
class Menu {
44
title: string;
55
link: string;
6-
options: { exact: boolean };
6+
options: { exact: boolean };
77
}
88

99
@Component({
@@ -13,25 +13,25 @@ class Menu {
1313
})
1414
export class AppComponent {
1515
menus: Menu[] = [
16-
{
16+
{
1717
title: 'Home',
1818
link: '/',
1919
options: { exact: true }
2020
},
21-
{
21+
{
2222
title: 'Operators',
2323
link: '/operators',
2424
options: { exact: false }
2525
},
26-
{
26+
{
2727
title: 'Companies',
2828
link: '/companies',
2929
options: { exact: false }
3030
},
31-
{
31+
{
3232
title: 'Team',
3333
link: '/team',
3434
options: { exact: false }
3535
}
36-
]
36+
];
3737
}

0 commit comments

Comments
 (0)