mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4816] Refactor About component (#5000)
* [ADF-4816] Refactor About component * Update package.json
This commit is contained in:
committed by
Maurizio Vitale
parent
f5c5e7cf9e
commit
e7c0852051
@@ -1 +1,5 @@
|
||||
<adf-about></adf-about>
|
||||
<adf-about
|
||||
[githubUrlCommitAlpha]="githubUrlCommitAlpha"
|
||||
[version]="version"
|
||||
[dependencies]="dependencies">
|
||||
</adf-about>
|
||||
|
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
|
||||
import { Component } from '@angular/core';
|
||||
import { name, version, commit, dependencies } from '../../../../../package.json';
|
||||
|
||||
@Component({
|
||||
selector: 'app-about-page',
|
||||
@@ -24,6 +25,10 @@ import { Component } from '@angular/core';
|
||||
})
|
||||
export class AboutComponent {
|
||||
|
||||
githubUrlCommitAlpha = `https://github.com/Alfresco/${name}/commits/${commit}`;
|
||||
version = version;
|
||||
dependencies = dependencies;
|
||||
|
||||
constructor() {
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user