diff --git a/platypush/backend/http/webapp/src/Utils.vue b/platypush/backend/http/webapp/src/Utils.vue index 95d637c2..bafc3aa8 100644 --- a/platypush/backend/http/webapp/src/Utils.vue +++ b/platypush/backend/http/webapp/src/Utils.vue @@ -4,6 +4,7 @@ import Clipboard from "@/utils/Clipboard"; import Cookies from "@/utils/Cookies"; import DateTime from "@/utils/DateTime"; import Events from "@/utils/Events"; +import Integrations from "@/utils/Integrations"; import Notification from "@/utils/Notification"; import Screen from "@/utils/Screen"; import Text from "@/utils/Text"; @@ -18,6 +19,7 @@ export default { DateTime, Events, Notification, + Integrations, Screen, Text, Types, diff --git a/platypush/backend/http/webapp/src/components/Nav.vue b/platypush/backend/http/webapp/src/components/Nav.vue index 41e76adf..b4187143 100644 --- a/platypush/backend/http/webapp/src/components/Nav.vue +++ b/platypush/backend/http/webapp/src/components/Nav.vue @@ -36,7 +36,7 @@ name - + @@ -112,6 +112,15 @@ export default { this.$emit('select', name) this.collapsed = this.isMobile() ? true : this.collapsedDefault }, + + displayName(name) { + if (name === 'entities') + return 'Home' + if (name === 'execute') + return 'Execute' + + return name + }, }, data() { @@ -256,9 +265,9 @@ nav { .icon { margin-right: 0; - & img { - width: 1.25em; - height: 1.25em; + & img, i { + width: 1.5em; + height: 1.5em; } } } 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 048f0c97..0f7648b9 100644 --- a/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue +++ b/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue @@ -39,7 +39,7 @@ -
+
diff --git a/platypush/backend/http/webapp/src/utils/Integrations.vue b/platypush/backend/http/webapp/src/utils/Integrations.vue new file mode 100644 index 00000000..0a55f936 --- /dev/null +++ b/platypush/backend/http/webapp/src/utils/Integrations.vue @@ -0,0 +1,18 @@ +