mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
Fix the self-hosted flag
This commit is contained in:
parent
5c49e5f1a3
commit
e2d0807e9a
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ export default class extends BaseController {
|
|||
console.log("Map controller connected");
|
||||
|
||||
this.apiKey = this.element.dataset.api_key;
|
||||
this.selfHosted = this.element.dataset.self_hosted === "true";
|
||||
this.selfHosted = this.element.dataset.self_hosted;
|
||||
this.markers = JSON.parse(this.element.dataset.coordinates);
|
||||
this.timezone = this.element.dataset.timezone;
|
||||
this.userSettings = JSON.parse(this.element.dataset.user_settings);
|
||||
|
|
|
|||
Loading…
Reference in a new issue