mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-01-24 05:17:16 +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';
|
import {SettingsService} from '../settings.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -6,14 +6,9 @@ import {SettingsService} from '../settings.service';
|
|||||||
templateUrl: './gallery-statistic.component.html',
|
templateUrl: './gallery-statistic.component.html',
|
||||||
styleUrls: ['./gallery-statistic.component.css']
|
styleUrls: ['./gallery-statistic.component.css']
|
||||||
})
|
})
|
||||||
export class GalleryStatisticComponent implements OnInit {
|
export class GalleryStatisticComponent {
|
||||||
|
|
||||||
constructor(
|
constructor(public settingsService: SettingsService) {
|
||||||
public settingsService: SettingsService
|
|
||||||
) {
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user