forked from platypush/platypush
Don't wait for UI updates for entities that are not queriable
This commit is contained in:
parent
fb594cb8b1
commit
f90d84a3d4
1 changed files with 3 additions and 0 deletions
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue