1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00
This commit is contained in:
Jonathan Prusik
2024-05-22 10:02:46 -04:00
committed by GitHub
parent 37eef7731f
commit 91ccb5ff93
3 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ import { enableAccountSwitching } from "../../../platform/flags";
selector: "autofill-notification-settings", selector: "autofill-notification-settings",
templateUrl: "notifications.component.html", templateUrl: "notifications.component.html",
}) })
export class NotifcationsSettingsComponent implements OnInit { export class NotificationsSettingsComponent implements OnInit {
enableAddLoginNotification = false; enableAddLoginNotification = false;
enableChangedPasswordNotification = false; enableChangedPasswordNotification = false;
enablePasskeys = true; enablePasskeys = true;

View File

@@ -28,7 +28,7 @@ import { TwoFactorComponent } from "../auth/popup/two-factor.component";
import { UpdateTempPasswordComponent } from "../auth/popup/update-temp-password.component"; import { UpdateTempPasswordComponent } from "../auth/popup/update-temp-password.component";
import { AutofillComponent } from "../autofill/popup/settings/autofill.component"; import { AutofillComponent } from "../autofill/popup/settings/autofill.component";
import { ExcludedDomainsComponent } from "../autofill/popup/settings/excluded-domains.component"; import { ExcludedDomainsComponent } from "../autofill/popup/settings/excluded-domains.component";
import { NotifcationsSettingsComponent } from "../autofill/popup/settings/notifications.component"; import { NotificationsSettingsComponent } from "../autofill/popup/settings/notifications.component";
import { PremiumComponent } from "../billing/popup/settings/premium.component"; import { PremiumComponent } from "../billing/popup/settings/premium.component";
import BrowserPopupUtils from "../platform/popup/browser-popup-utils"; import BrowserPopupUtils from "../platform/popup/browser-popup-utils";
import { GeneratorComponent } from "../tools/popup/generator/generator.component"; import { GeneratorComponent } from "../tools/popup/generator/generator.component";
@@ -261,7 +261,7 @@ const routes: Routes = [
}, },
{ {
path: "notifications", path: "notifications",
component: NotifcationsSettingsComponent, component: NotificationsSettingsComponent,
canActivate: [AuthGuard], canActivate: [AuthGuard],
data: { state: "notifications" }, data: { state: "notifications" },
}, },

View File

@@ -39,7 +39,7 @@ import { TwoFactorComponent } from "../auth/popup/two-factor.component";
import { UpdateTempPasswordComponent } from "../auth/popup/update-temp-password.component"; import { UpdateTempPasswordComponent } from "../auth/popup/update-temp-password.component";
import { AutofillComponent } from "../autofill/popup/settings/autofill.component"; import { AutofillComponent } from "../autofill/popup/settings/autofill.component";
import { ExcludedDomainsComponent } from "../autofill/popup/settings/excluded-domains.component"; import { ExcludedDomainsComponent } from "../autofill/popup/settings/excluded-domains.component";
import { NotifcationsSettingsComponent } from "../autofill/popup/settings/notifications.component"; import { NotificationsSettingsComponent } from "../autofill/popup/settings/notifications.component";
import { PremiumComponent } from "../billing/popup/settings/premium.component"; import { PremiumComponent } from "../billing/popup/settings/premium.component";
import { PopOutComponent } from "../platform/popup/components/pop-out.component"; import { PopOutComponent } from "../platform/popup/components/pop-out.component";
import { HeaderComponent } from "../platform/popup/header.component"; import { HeaderComponent } from "../platform/popup/header.component";
@@ -155,7 +155,7 @@ import "../platform/popup/locales";
LoginViaAuthRequestComponent, LoginViaAuthRequestComponent,
LoginDecryptionOptionsComponent, LoginDecryptionOptionsComponent,
OptionsComponent, OptionsComponent,
NotifcationsSettingsComponent, NotificationsSettingsComponent,
AppearanceComponent, AppearanceComponent,
GeneratorComponent, GeneratorComponent,
PasswordGeneratorHistoryComponent, PasswordGeneratorHistoryComponent,