#1145 Fix multi-language

This commit is contained in:
mauriziovitale84
2016-11-25 16:43:14 +00:00
committed by Mario Romano
parent 6006c026dc
commit 76a9fa41e6
5 changed files with 45 additions and 19 deletions

View File

@@ -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 || [];
}
}