mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-22 10:20:14 +01:00
chore(lint): update linter to follow angular lint file
This commit is contained in:
parent
899d874cdd
commit
3429ed0a8d
17 changed files with 53 additions and 46 deletions
|
|
@ -12,7 +12,7 @@ import { AnalyticsService } from '../../../@core/utils/analytics.service';
|
|||
export class HeaderComponent implements OnInit {
|
||||
|
||||
|
||||
@Input() position: string = 'normal';
|
||||
@Input() position = 'normal';
|
||||
|
||||
user: any;
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ export class SearchInputComponent {
|
|||
|
||||
@Output() search: EventEmitter<string> = new EventEmitter<string>();
|
||||
|
||||
isInputShown: boolean = false;
|
||||
isInputShown = false;
|
||||
|
||||
showInput() {
|
||||
this.isInputShown = true;
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ export class SampleLayoutComponent implements OnDestroy {
|
|||
|
||||
this.sidebarState$ = this.stateService.onSidebarState()
|
||||
.subscribe((sidebar: string) => {
|
||||
this.sidebar = sidebar
|
||||
this.sidebar = sidebar;
|
||||
});
|
||||
|
||||
const isBp = this.bpService.getByName('is');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue