From e903331433ad407665a11fdf4532f3618286005b Mon Sep 17 00:00:00 2001 From: Sam Corbett Date: Fri, 14 Jul 2017 18:59:03 +0100 Subject: [PATCH] Fix app wizard configuration load The endpoint used was changed to require a version. Assume latest. --- src/main/webapp/assets/js/view/application-add-wizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/assets/js/view/application-add-wizard.js b/src/main/webapp/assets/js/view/application-add-wizard.js index 0902eec19..04449a05f 100644 --- a/src/main/webapp/assets/js/view/application-add-wizard.js +++ b/src/main/webapp/assets/js/view/application-add-wizard.js @@ -643,7 +643,7 @@ define([ } else if (this.model.catalogEntityData=="LOAD") { console.log("loading", this.model.spec.get("type")); this.renderStaticConfig("LOADING") - $.get('/v1/catalog/entities/'+encodeURIComponent(this.model.spec.get("type")), {}, function (result) { + $.get('/v1/catalog/entities/'+encodeURIComponent(this.model.spec.get("type")) + '/latest', {}, function (result) { that.model.catalogEntityData = result that.renderStaticConfig(that.model.catalogEntityData) })