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 662b8765..9f1d03b5 100644 --- a/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue +++ b/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue @@ -277,7 +277,7 @@ export default { }, }, - mounted() { + async mounted() { this.subscribe( this.onEntityUpdate, 'on-entity-update', @@ -290,7 +290,8 @@ export default { 'platypush.message.event.entities.EntityDeleteEvent' ) - this.sync() + await this.sync() + await this.refresh() }, }