Merge pull request #5561 from tsiegleauq/fix-csv
Adjust the example csv gender fields
This commit is contained in:
commit
909a7539c5
@ -80,7 +80,7 @@ export class UserImportListComponent extends BaseImportListComponentDirective<Us
|
|||||||
'initialPassword',
|
'initialPassword',
|
||||||
null,
|
null,
|
||||||
'mmustermann',
|
'mmustermann',
|
||||||
'm',
|
'male',
|
||||||
1.0
|
1.0
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@ -100,7 +100,23 @@ export class UserImportListComponent extends BaseImportListComponentDirective<Us
|
|||||||
'diverse',
|
'diverse',
|
||||||
2.0
|
2.0
|
||||||
],
|
],
|
||||||
[null, 'Julia', 'Bloggs', 'London', null, null, null, null, null, null, null, null, 'jbloggs', 'f', 1.5],
|
[
|
||||||
|
null,
|
||||||
|
'Julia',
|
||||||
|
'Bloggs',
|
||||||
|
'London',
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
'jbloggs',
|
||||||
|
'female',
|
||||||
|
1.5
|
||||||
|
],
|
||||||
[null, null, 'Executive Board', null, null, null, null, null, null, 1, null, null, 'executive', null, 2.5]
|
[null, null, 'Executive Board', null, null, null, null, null, null, 1, null, null, 'executive', null, 2.5]
|
||||||
];
|
];
|
||||||
this.exporter.dummyCSVExport(this.headerRow, rows, `${this.translate.instant('participants-example')}.csv`);
|
this.exporter.dummyCSVExport(this.headerRow, rows, `${this.translate.instant('participants-example')}.csv`);
|
||||||
|
Loading…
Reference in New Issue
Block a user