From 1020b63da706fdd55bb3206a187007b3a4f7aad0 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 15 Sep 2023 00:34:29 +0200 Subject: [PATCH] All EntityMixin components should be allowed to emit `loading` events. --- .../http/webapp/src/components/panels/Entities/EntityMixin.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/backend/http/webapp/src/components/panels/Entities/EntityMixin.vue b/platypush/backend/http/webapp/src/components/panels/Entities/EntityMixin.vue index a00cd69ca..0698aab06 100644 --- a/platypush/backend/http/webapp/src/components/panels/Entities/EntityMixin.vue +++ b/platypush/backend/http/webapp/src/components/panels/Entities/EntityMixin.vue @@ -4,7 +4,7 @@ import Utils from "@/Utils" export default { name: "EntityMixin", mixins: [Utils], - emits: ['input'], + emits: ['input', 'loading'], props: { loading: { type: Boolean,