From f9fb76a97cb04badea7857c5abcc5705cb98d043 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Tue, 29 Mar 2022 15:27:28 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Increases=20default=20widg?= =?UTF-8?q?et=20timeout=202.5=20sec=20(#581)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Widgets/WidgetBase.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Widgets/WidgetBase.vue b/src/components/Widgets/WidgetBase.vue index e6f80c3a..7e714fad 100644 --- a/src/components/Widgets/WidgetBase.vue +++ b/src/components/Widgets/WidgetBase.vue @@ -476,7 +476,7 @@ export default { /* Returns users specified widget options, or empty object */ widgetOptions() { 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 updateInterval = this.widget.updateInterval !== undefined ? this.widget.updateInterval : null;