From ec86cfd6ba3412f7a12342a55093efebfac2b4c3 Mon Sep 17 00:00:00 2001 From: gunadhya <6939749+gunadhya@users.noreply.github.com> Date: Fri, 22 Jan 2021 01:01:20 +0530 Subject: [PATCH] Fix redirect issue Signed-off-by: gunadhya <6939749+gunadhya@users.noreply.github.com> --- docs/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index f31c695f7ca..bf4e455df21 100644 --- a/docs/index.html +++ b/docs/index.html @@ -121,7 +121,9 @@ console.log(err); return; } - this.version = latest.name; + if (versionParam == null) { + this.version = latest.name; + } }, async outputHtml() { if (this.version !== this.oldVersion) {