[ACA-3914] Fix app version number and enable git commit hash to be used properly (#1650)

This commit is contained in:
Popovics András
2020-09-16 12:24:21 +02:00
committed by GitHub
parent 6612a702c0
commit 3db18f7d1d
5 changed files with 6 additions and 6 deletions

View File

@@ -2,8 +2,7 @@
<aca-page-layout-content [scrollable]="true">
<div class="main-content">
<article>
<adf-about-github-link [application]="'application.name' | adfAppConfig" [url]="appRepoUrl" [version]="'application.version' | adfAppConfig">
</adf-about-github-link>
<adf-about-github-link [application]="'application.name' | adfAppConfig" [url]="appRepoUrl" [version]="appVersion"> </adf-about-github-link>
</article>
<article>

View File

@@ -29,7 +29,7 @@ import { RepositoryInfo } from '@alfresco/js-api';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { AppExtensionService, ContentApiService } from '@alfresco/aca-shared';
import { dependencies, version, name, commit } from '../../../../package.json';
import { dependencies, version, name, commit } from 'package.json';
@Component({
selector: 'app-about',
templateUrl: './about.component.html',