From d9d5f03faa0dfc6b284566f481c1d91e0c5383d9 Mon Sep 17 00:00:00 2001 From: Ben Francis Date: Wed, 30 Aug 2023 17:47:59 +0100 Subject: [PATCH] Don't flash No Devices Yet on page load - closes #3056 --- static/js/views/things.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/views/things.js b/static/js/views/things.js index add91ba9c..d235d0fe4 100644 --- a/static/js/views/things.js +++ b/static/js/views/things.js @@ -145,7 +145,7 @@ const ThingsScreen = { App.gatewayModel.unsubscribe(Constants.REFRESH_THINGS, this.refreshThing); App.gatewayModel.unsubscribe(Constants.DELETE_THINGS, this.refreshThing); App.gatewayModel.subscribe(Constants.DELETE_THINGS, this.refreshThings); - App.gatewayModel.subscribe(Constants.REFRESH_THINGS, this.refreshThings, true); + App.gatewayModel.subscribe(Constants.REFRESH_THINGS, this.refreshThings); }, /**