mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
Fix lint warnings
This commit is contained in:
parent
28d6ad2103
commit
bf4be1a4fe
3 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { Component, OnInit, OnDestroy } from '@angular/core';
|
||||
import { NbComponentShape, NbComponentSize, NbComponentStatus, NbThemeService } from '@nebular/theme';
|
||||
import { Subscription } from 'rxjs';
|
||||
|
||||
|
|
@ -7,7 +7,7 @@ import { Subscription } from 'rxjs';
|
|||
styleUrls: ['./buttons.component.scss'],
|
||||
templateUrl: './buttons.component.html',
|
||||
})
|
||||
export class ButtonsComponent {
|
||||
export class ButtonsComponent implements OnInit, OnDestroy {
|
||||
public constructor(private readonly themeService: NbThemeService) {}
|
||||
|
||||
private readonly subscription: Subscription = new Subscription();
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@ import { Component } from '@angular/core';
|
|||
@Component({
|
||||
selector: 'ngx-material-buttons',
|
||||
templateUrl: './material-buttons.component.html',
|
||||
styleUrls: ['./material-buttons.component.scss']
|
||||
styleUrls: ['./material-buttons.component.scss'],
|
||||
})
|
||||
export class MaterialButtonsComponent {}
|
||||
|
|
@ -3,6 +3,6 @@ import { Component } from '@angular/core';
|
|||
@Component({
|
||||
selector: 'ngx-material-inputs',
|
||||
templateUrl: './material-inputs.component.html',
|
||||
styleUrls: ['./material-inputs.component.scss']
|
||||
styleUrls: ['./material-inputs.component.scss'],
|
||||
})
|
||||
export class MaterialInputsComponent {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue