mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-12-21 10:25:00 +00:00
Update changelog
This commit is contained in:
parent
b417cce31d
commit
69a581094a
2 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v0.3.3 - 20th February 2019
|
||||||
|
- Updated to use new database structure
|
||||||
|
|
||||||
## v0.3.2 - 10th February 2019
|
## v0.3.2 - 10th February 2019
|
||||||
- Bugfix: Default to something sensible when opening the device graph in certain cases
|
- Bugfix: Default to something sensible when opening the device graph in certain cases
|
||||||
- Add new quick time buttons below device graph to change displayed time window
|
- Add new quick time buttons below device graph to change displayed time window
|
||||||
|
|
|
@ -196,6 +196,7 @@ class DeviceReadingDisplay {
|
||||||
// Wrap it in an Error instance if needed
|
// Wrap it in an Error instance if needed
|
||||||
if(typeof error == "string")
|
if(typeof error == "string")
|
||||||
error = new Error(error.length == 0 ? "An unknown error has ocurred. It's probably on the server." : error);
|
error = new Error(error.length == 0 ? "An unknown error has ocurred. It's probably on the server." : error);
|
||||||
|
|
||||||
alert(error.message);
|
alert(error.message);
|
||||||
console.error(error);
|
console.error(error);
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue