From 04edeb39423b2a6591df9ee519cf66d5f34c000e Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Mon, 19 Mar 2018 13:45:49 +0000 Subject: [PATCH] Quick start widget should show Boot 2.0.0.RELEASE --- js/projectDocumentationWidget.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/projectDocumentationWidget.js b/js/projectDocumentationWidget.js index ca4f039..20853fd 100644 --- a/js/projectDocumentationWidget.js +++ b/js/projectDocumentationWidget.js @@ -104,9 +104,9 @@ Spring.SnippetView = Backbone.View.extend({ }, render: function () { - this.model.bootVersion = this.model.version.indexOf("Finchley")!=-1 ? "2.0.0.M7" : - this.model.version.indexOf("Edgware")!=-1 ? "1.5.9.RELEASE" : - this.model.version.indexOf("Dalston")!=-1 ? "1.5.9.RELEASE" : + this.model.bootVersion = this.model.version.indexOf("Finchley")!=-1 ? "2.0.0.RELEASE" : + this.model.version.indexOf("Edgware")!=-1 ? "1.5.10.RELEASE" : + this.model.version.indexOf("Dalston")!=-1 ? "1.5.10.RELEASE" : this.model.version.indexOf("Camden")!=-1 ? "1.4.5.RELEASE" : this.model.version.indexOf("Brixton")!=-1 ? "1.3.8.RELEASE" : "1.2.8.RELEASE";