mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 16:30:13 +01:00
fix(framework): fix linting issues
This commit is contained in:
parent
b75eb12837
commit
da8d87c1f9
2 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ export class HeaderComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
switchTheme() {
|
switchTheme() {
|
||||||
if (this.themeService.currentTheme == 'light') {
|
if (this.themeService.currentTheme === 'light') {
|
||||||
this.themeService.changeTheme('cosmic');
|
this.themeService.changeTheme('cosmic');
|
||||||
} else {
|
} else {
|
||||||
this.themeService.changeTheme('light');
|
this.themeService.changeTheme('light');
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ export class LeafletComponent {
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
layers: [
|
layers: [
|
||||||
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 18, attribution: '...' })
|
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 18, attribution: '...' }),
|
||||||
],
|
],
|
||||||
zoom: 5,
|
zoom: 5,
|
||||||
center: L.latLng({ lat: 38.991709, lng: -76.886109 }),
|
center: L.latLng({ lat: 38.991709, lng: -76.886109 }),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue