mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
#1145 Fix multi-language
This commit is contained in:
committed by
Mario Romano
parent
6006c026dc
commit
76a9fa41e6
@@ -18,11 +18,11 @@
|
||||
export class ComponentTranslationModel {
|
||||
name: string;
|
||||
path: string;
|
||||
json: string;
|
||||
json: string [];
|
||||
|
||||
constructor(obj?: any) {
|
||||
this.name = obj && obj.name;
|
||||
this.path = obj && obj.path;
|
||||
this.json = obj && obj.json || null;
|
||||
this.json = obj && obj.json || [];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user