Skip to content

Commit ea1f622

Browse files
committed
1d data hotfix
1 parent 8940075 commit ea1f622

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

web/twa-vis-framework/library/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
## 4.7.0
66

7+
### Bug Fixes
8+
9+
* Fixed issue where data with no dimensions was looking for a `SliderHandler`
10+
11+
## 4.7.0
12+
713
### Features
814

915
* Added functionality to scenario handler to fetch time series data from scenario endpoint
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.7.0
1+
4.7.1

web/twa-vis-framework/library/src/ts/manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class Manager {
257257
return Promise.resolve();
258258
}
259259

260-
if (this.sliderHandler.scenarioDimensionsData) {
260+
if (this.sliderHandler && this.sliderHandler.scenarioDimensionsData) {
261261
dataJSON = DataGroup.handleDimensions(dataJSON, this.sliderHandler.scenarioDimensionsData, value)
262262
}
263263

0 commit comments

Comments
 (0)