[ACA-3317] Make About Github Link Component input properties optional (#5717)

* [ACA-3317] Make About Github Link Component input properties optional

* Update permission-list.component.html
This commit is contained in:
davidcanonieto 2020-05-21 15:05:05 +01:00 committed by GitHub
parent 08811c7c60
commit ac847313e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,10 +28,12 @@ export class AboutGithubLinkComponent {
url = 'https://github.com/Alfresco/alfresco-ng2-components/commits/';
/** Current version of the app running */
@Input() version: string;
@Input()
version: string = '';
/** Current version of the app running */
@Input() application: string;
/** Title of app running */
@Input()
application: string = '';
constructor() {}
}