mirror of https://github.com/Lissy93/dashy.git
⚡️ Increases default widget timeout 2.5 sec (#581)
This commit is contained in:
parent
c2559bc731
commit
f9fb76a97c
|
@ -476,7 +476,7 @@ export default {
|
||||||
/* Returns users specified widget options, or empty object */
|
/* Returns users specified widget options, or empty object */
|
||||||
widgetOptions() {
|
widgetOptions() {
|
||||||
const options = this.widget.options || {};
|
const options = this.widget.options || {};
|
||||||
const timeout = this.widget.timeout || 500;
|
const timeout = this.widget.timeout || 2500;
|
||||||
const useProxy = this.appConfig.widgetsAlwaysUseProxy || !!this.widget.useProxy;
|
const useProxy = this.appConfig.widgetsAlwaysUseProxy || !!this.widget.useProxy;
|
||||||
const updateInterval = this.widget.updateInterval !== undefined
|
const updateInterval = this.widget.updateInterval !== undefined
|
||||||
? this.widget.updateInterval : null;
|
? this.widget.updateInterval : null;
|
||||||
|
|
Loading…
Reference in New Issue