From f90d84a3d45390671a90cb50eb479ba367199905 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 13 Nov 2022 00:54:37 +0100 Subject: [PATCH] Don't wait for UI updates for entities that are not queriable --- .../http/webapp/src/components/panels/Entities/Index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue b/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue index b43a65d1..ce99ba09 100644 --- a/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue +++ b/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue @@ -176,6 +176,9 @@ export default { }, {})) this.loadingEntities = Object.values(entities).reduce((obj, entity) => { + if (entity.is_query_disabled || entity.is_write_only) + return obj + const self = this const id = entity.id if (this.entityTimeouts[id])