mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-24 06:43:01 +00:00
parent
d81510e6b2
commit
ea14f29a96
1 changed files with 2 additions and 5 deletions
|
@ -39,9 +39,7 @@ class UI {
|
|||
this.config = in_config;
|
||||
this.map_manager = in_map_manager;
|
||||
|
||||
this.ui_panel = new SmartSettings({
|
||||
name: "Settings"
|
||||
});
|
||||
this.ui_panel = new SmartSettings("Settings");
|
||||
// this.ui_panel.watch((event) => console.log(event));
|
||||
|
||||
this.tour_enabled = false;
|
||||
|
@ -59,7 +57,6 @@ class UI {
|
|||
{
|
||||
type: "select",
|
||||
name: "Reading Type",
|
||||
selected: "PM25",
|
||||
items: this.reading_types.map((type) => type.friendly_text),
|
||||
callback: (async (event) => {
|
||||
let new_type = this.reading_types.find((type) => type.friendly_text == event.target.value).short_descr;
|
||||
|
@ -92,7 +89,7 @@ class UI {
|
|||
})
|
||||
}
|
||||
];
|
||||
// this.ui_panel.setIndex("Reading Type", this.reading_types.findIndex((type) => type.short_descr == "PM25"));
|
||||
this.ui_panel.setIndex("Reading Type", this.reading_types.findIndex((type) => type.short_descr == "PM25"));
|
||||
|
||||
if(this.tour_enabled) await this.tour.run_once();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue