mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +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() {
|
||||
if (this.themeService.currentTheme == 'light') {
|
||||
if (this.themeService.currentTheme === 'light') {
|
||||
this.themeService.changeTheme('cosmic');
|
||||
} else {
|
||||
this.themeService.changeTheme('light');
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ export class LeafletComponent {
|
|||
|
||||
options = {
|
||||
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,
|
||||
center: L.latLng({ lat: 38.991709, lng: -76.886109 }),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue