@things-factory/board-ui 4.3.114 → 4.3.115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -85,7 +85,7 @@ export class BoardPlayerPage extends connect(store)(PageView) {
|
|
|
85
85
|
this._showSpinner = true
|
|
86
86
|
this.updateContext()
|
|
87
87
|
|
|
88
|
-
const { autoRefresh, interval } = (await clientSettingStore.get('board-view'))?.value
|
|
88
|
+
const { autoRefresh = false, interval = 60 } = (await clientSettingStore.get('board-view'))?.value || {}
|
|
89
89
|
autoRefresh && this.startCheckingForAutoRefresh(interval)
|
|
90
90
|
|
|
91
91
|
this._playGroup = (
|
|
@@ -186,7 +186,7 @@ export class BoardViewerPage extends connect(store)(PageView) {
|
|
|
186
186
|
this._showSpinner = false
|
|
187
187
|
this.updateContext()
|
|
188
188
|
|
|
189
|
-
const { autoRefresh, interval } = (await clientSettingStore.get('board-view'))?.value
|
|
189
|
+
const { autoRefresh = false, interval = 60 } = (await clientSettingStore.get('board-view'))?.value || {}
|
|
190
190
|
autoRefresh && this.startCheckingForAutoRefresh(interval)
|
|
191
191
|
}
|
|
192
192
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/board-ui",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.115",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"file-saver": "^2.0.2",
|
|
47
47
|
"sortablejs": "^1.10.2"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "032345a5ce00068c1d704e3257b8ad4a5c3b084f"
|
|
50
50
|
}
|