Commit 3c60f59 1 parent 097ac4c commit 3c60f59 Copy full SHA for 3c60f59
File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
- ## Changes in version 1.0.2 (in development)
1
+ ## Changes in version 1.0.2
2
2
3
- * Chart labels are now visible again using light theme. (#268 )
3
+ * Timeseries chart labels are now visible again using light theme. (#268 )
4
4
5
5
* Users can now remove individual timeseries from a chart. (#277 )
6
6
7
7
8
-
9
8
## Changes in version 1.0.1
10
9
11
10
### Fixes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " xcube-viewer" ,
3
- "version" : " 1.0.2-dev.1 " ,
3
+ "version" : " 1.0.2" ,
4
4
"private" : true ,
5
5
"homepage" : " ." ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ class Parser {
137
137
if ( token === options . nanToken ) {
138
138
return Number . NaN ;
139
139
}
140
- const value = parseFloat ( token ) ;
140
+ const value = Number ( token ) ;
141
141
if ( ! Number . isNaN ( value ) ) {
142
142
return value ;
143
143
}
You can’t perform that action at this time.
0 commit comments