From 6bd4b9b54864092842acde4af35b89c3a452dafd Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Wed, 7 Jun 2017 16:26:33 +0100 Subject: [PATCH] fix blob input in text viewer (#1942) --- demo-shell-ng2/app/components/about/about.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-shell-ng2/app/components/about/about.component.ts b/demo-shell-ng2/app/components/about/about.component.ts index 4d7fa53321..bcf134083e 100644 --- a/demo-shell-ng2/app/components/about/about.component.ts +++ b/demo-shell-ng2/app/components/about/about.component.ts @@ -97,7 +97,7 @@ export class AboutComponent implements OnInit { if (corePackage) { let commitIsh = corePackage.version.split('-'); if (commitIsh.length > 1) { - this.githubUrlCommitAlpha = this.githubUrlCommitAlpha + commitIsh; + this.githubUrlCommitAlpha = this.githubUrlCommitAlpha + commitIsh[1]; } else { this.githubUrlCommitAlpha = this.githubUrlCommitAlpha + corePackage.version; }