mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-01-10 04:07:35 +02:00
Fixing component empty lifecycle function #569
This commit is contained in:
parent
0c6c18bb1c
commit
84ed0cf256
@ -1,4 +1,4 @@
|
||||
import {Component, OnInit} from '@angular/core';
|
||||
import {Component} from '@angular/core';
|
||||
import {SettingsService} from '../settings.service';
|
||||
|
||||
@Component({
|
||||
@ -6,14 +6,9 @@ import {SettingsService} from '../settings.service';
|
||||
templateUrl: './gallery-statistic.component.html',
|
||||
styleUrls: ['./gallery-statistic.component.css']
|
||||
})
|
||||
export class GalleryStatisticComponent implements OnInit {
|
||||
export class GalleryStatisticComponent {
|
||||
|
||||
constructor(
|
||||
public settingsService: SettingsService
|
||||
) {
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
constructor(public settingsService: SettingsService) {
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user