mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
fix: fix lint error
This commit is contained in:
parent
48aeda5077
commit
ce5713ff13
1 changed files with 2 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
import { Component, OnDestroy, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { NbMediaBreakpoint } from '@nebular/theme';
|
import { NbMediaBreakpoint } from '@nebular/theme';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
import { AnalyticsService } from '../@core/utils';
|
import { AnalyticsService } from '../@core/utils';
|
||||||
|
|
@ -11,7 +11,7 @@ import { MetadataService } from '../@core/utils/metadata.service';
|
||||||
templateUrl: './starter.component.html',
|
templateUrl: './starter.component.html',
|
||||||
styleUrls: ['./starter.component.scss'],
|
styleUrls: ['./starter.component.scss'],
|
||||||
})
|
})
|
||||||
export class NgxStarterComponent implements OnDestroy, OnInit {
|
export class NgxStarterComponent implements OnInit {
|
||||||
breakpoint: NbMediaBreakpoint;
|
breakpoint: NbMediaBreakpoint;
|
||||||
breakpoints: any;
|
breakpoints: any;
|
||||||
|
|
||||||
|
|
@ -70,7 +70,4 @@ export class NgxStarterComponent implements OnDestroy, OnInit {
|
||||||
trackEmailClick() {
|
trackEmailClick() {
|
||||||
this.analytics.trackEvent('clickContactEmail', 'click');
|
this.analytics.trackEvent('clickContactEmail', 'click');
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnDestroy() {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue