Skip to content
Snippets Groups Projects
Commit 40a4b2da authored by mathias.chouet's avatar mathias.chouet
Browse files

Fix rebase error

parent 932da0e3
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,7 @@ export class SelectField extends Field { ...@@ -116,7 +116,7 @@ export class SelectField extends Field {
// some Select fields already have a translated label at this time; translate others // some Select fields already have a translated label at this time; translate others
if (e.label === undefined) { if (e.label === undefined) {
const aId = e.id.split("_"); const aId = e.id.split("_");
e.label = ServiceFactory.instance.i18nService.localizeText(`${aId[1].toUpperCase()}_${aId[2]}`, loc); e.label = ServiceFactory.i18nService.localizeText(`${aId[1].toUpperCase()}_${aId[2]}`, loc);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment