Don't wait for UI updates for entities that are not queriable

This commit is contained in:
Fabio Manganiello 2022-11-13 00:54:37 +01:00
parent fb594cb8b1
commit f90d84a3d4
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 3 additions and 0 deletions

View File

@ -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])