|
@@ -38,7 +38,10 @@ export default class AutogenChangePasswordController {
|
|
|
private HelpDeskService: IHelpDeskService,
|
|
|
private IasDialogService: any,
|
|
|
private personUserKey: string) {
|
|
|
- this.passwordSuggestions = Array<string>(20).fill('');
|
|
|
+ this.passwordSuggestions = [];
|
|
|
+ for (let i = 0; i < 20; i++) {
|
|
|
+ this.passwordSuggestions.push('');
|
|
|
+ }
|
|
|
this.populatePasswordSuggestions();
|
|
|
}
|
|
|
|