Prefixed selectors
FarmMaps.Develop/FarmMapsLib/develop This commit looks good Details

pull/1/head
Willem Dantuma 2019-11-04 13:18:01 +01:00
parent d3782323f5
commit 4de14abf89
7 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@ import { Component } from '@angular/core';
@Component({
selector: 'auth-callback',
selector: 'fm-auth-callback',
template:'<div></div>'
})
export class AuthCallbackComponent {

View File

@ -1,7 +1,7 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'not-found',
selector: 'fm-not-found',
templateUrl: './not-found.component.html'
// styleUrls: ['./not-found.component.css']
})

View File

@ -7,7 +7,7 @@ import * as commonActions from '../../actions/app-common.actions';
@Component({
selector: 'resumable-file-upload',
selector: 'fm-resumable-file-upload',
templateUrl: './resumable-file-upload.component.html',
styleUrls: ['./resumable-file-upload.component.scss']
})

View File

@ -7,7 +7,7 @@ import * as appCommonActions from '../../actions/app-common.actions';
@Component({
selector: 'session-cleared',
selector: 'fm-session-cleared',
templateUrl: 'session-cleared.component.html',
styleUrls: ['session-cleared.component.scss']
})

View File

@ -1,7 +1,7 @@
import { Component, Input,ViewChild,ElementRef,OnChanges,SimpleChanges,HostListener,ChangeDetectorRef } from '@angular/core';
@Component({
selector: 'side-panel',
selector: 'fm-side-panel',
templateUrl: 'side-panel.component.html',
styleUrls: ['side-panel.component.scss']
})

View File

@ -5,7 +5,7 @@ import { tap,catchError,debounceTime,distinctUntilChanged,switchMap } from 'rxjs
import { TypeaheadService } from '../../services/typeahead.service';
@Component({
selector: 'tag-input',
selector: 'fm-tag-input',
templateUrl: 'tag-input.component.html',
styleUrls: ['tag-input.component.scss'],
providers: [

View File

@ -8,7 +8,7 @@ export interface TimeSpan {
}
@Component({
selector: 'timespan',
selector: 'fm-timespan',
templateUrl: './timespan.component.html',
styleUrls: ['./timespan.component.css']
})