From 8faba2a45e9a67e60379fc8f8ad55601b7be9d8b Mon Sep 17 00:00:00 2001 From: Onur Menal Date: Wed, 8 Apr 2020 21:48:54 +0300 Subject: [PATCH] Entity Editor - Default solution GUID has been corrected. --- package-lock.json | 2 +- package.json | 4 ++-- src/js/ui/pane.js | 2 +- src/js/util/manifest-builder.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index ba55748..39b19e7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "crm-power-pane", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c193a5a..dcea405 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "crm-power-pane", - "version": "1.2.0", - "description": "The Dynamics 365 Power Pane is a helper tool designed to integrate with Dynamics CRM/365 application and allow you to manipulate forms.", + "version": "1.2.1", + "description": "Dynamics 365 Power Pane is a helper tool designed to integrate with Dynamics CRM/365 application and allow you to manipulate forms.", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", diff --git a/src/js/ui/pane.js b/src/js/ui/pane.js index 5fcedbc..2f3db0d 100644 --- a/src/js/ui/pane.js +++ b/src/js/ui/pane.js @@ -849,7 +849,7 @@ $(function () { var entityTypeCode = Xrm.Internal.getEntityCode(entityName); // ref https://docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/developers-guide/gg328257(v=crm.8)?redirectedfrom=MSDN#constant-solutionid-values - var defaultSolutionId = "{FD140AAE-4DF4-11DD-BD17-0019B9312238}"; + var defaultSolutionId = "{FD140AAF-4DF4-11DD-BD17-0019B9312238}"; var entitiesCategoryCode = 9801; // undocumented window.open(Content.Xrm.Page.context.getClientUrl() + "/tools/solution/edit.aspx?id=" + defaultSolutionId + "&def_category=" + entitiesCategoryCode + "&def_type=" + entityTypeCode) }); diff --git a/src/js/util/manifest-builder.js b/src/js/util/manifest-builder.js index 588e01a..539c2c1 100644 --- a/src/js/util/manifest-builder.js +++ b/src/js/util/manifest-builder.js @@ -7,7 +7,7 @@ const build = (target, version) => { manifest.name = "Dynamics 365 Power Pane" manifest.short_name = "Dynamics 365 Power Pane" manifest.version = version - manifest.description = "The Dynamics 365 Power Pane is a helper tool designed to integrate with Dynamics CRM/365 application and allow you to manipulate forms." + manifest.description = "Dynamics 365 Power Pane is a helper tool designed to integrate with Dynamics CRM/365 application and allow you to manipulate forms." manifest.content_security_policy = "script-src 'self'; object-src 'self'" manifest.browser_action = {};