1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 03:03:43 +00:00

updated dates and password history

This commit is contained in:
Kyle Spearrin
2018-07-30 10:54:38 -04:00
parent 6db7804a3b
commit 8737f76edc
9 changed files with 121 additions and 5 deletions

View File

@@ -3,7 +3,6 @@ import { Angulartics2 } from 'angulartics2';
import { Location } from '@angular/common';
import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
@@ -26,7 +25,7 @@ export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2,
platformUtilsService: PlatformUtilsService, i18nService: I18nService,
toasterService: ToasterService, private stateService: StateService,
private router: Router, private location: Location) {
private location: Location) {
super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService, window);
}