Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 358ee22

Browse files
Make indentation consistent
1 parent 07a9c16 commit 358ee22

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

templates/Angular2Spa/ClientApp/app/components/counter/counter.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4-
selector: 'counter',
5-
template: require('./counter.component.html')
4+
selector: 'counter',
5+
template: require('./counter.component.html')
66
})
77
export class CounterComponent {
88
public currentCount = 0;

templates/Angular2Spa/ClientApp/app/components/fetchdata/fetchdata.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { Component } from '@angular/core';
22
import { Http } from '@angular/http';
33

44
@Component({
5-
selector: 'fetchdata',
6-
template: require('./fetchdata.component.html')
5+
selector: 'fetchdata',
6+
template: require('./fetchdata.component.html')
77
})
88
export class FetchDataComponent {
99
public forecasts: WeatherForecast[];
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4-
selector: 'home',
5-
template: require('./home.component.html')
4+
selector: 'home',
5+
template: require('./home.component.html')
66
})
77
export class HomeComponent {
88
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4-
selector: 'nav-menu',
5-
template: require('./navmenu.component.html')
4+
selector: 'nav-menu',
5+
template: require('./navmenu.component.html')
66
})
77
export class NavMenuComponent {
88
}

0 commit comments

Comments
 (0)