From 718e0434bae861a44960597fa055db29747de31b Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 20 Mar 2023 14:32:03 +0100 Subject: [PATCH] Display all available entity attributes on EntityModal. --- .../src/components/panels/Entities/Modal.vue | 37 +++++++++++++++---- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue b/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue index b2d6f183b7..bcacf4f433 100644 --- a/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue +++ b/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue @@ -90,13 +90,6 @@ -
-
-
-
-
-
-
Created at
@@ -107,6 +100,20 @@
+
+
+
+
+
+
+ +
+
+
+
+
+
+
Delete Entity
@@ -152,6 +159,21 @@ import Utils from "@/Utils"; import Entity from "./Entity"; import meta from './meta.json'; +// These fields have a different rendering logic than the general-purpose one +const specialFields = [ + 'created_at', + 'data', + 'description', + 'external_id', + 'external_url', + 'id', + 'image_url', + 'meta', + 'name', + 'plugin', + 'updated_at', +] + export default { name: "EntityModal", components: {Entity, Modal, EditButton, NameEditor, Icon, ConfirmDialog}, @@ -188,6 +210,7 @@ export default { editName: false, editIcon: false, configCollapsed: true, + specialFields: specialFields, } },