mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
prod build fixes
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: cd3c2ddff1...d875b9aeb0
@@ -1,4 +1,4 @@
|
|||||||
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" class="container">
|
<form (ngSubmit)="submit()" class="container">
|
||||||
<div class="row justify-content-md-center mt-5">
|
<div class="row justify-content-md-center mt-5">
|
||||||
<div class="col-5">
|
<div class="col-5">
|
||||||
<p class="text-center mb-4">
|
<p class="text-center mb-4">
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
<label for="masterPassword">{{'masterPass' | i18n}}</label>
|
<label for="masterPassword">{{'masterPass' | i18n}}</label>
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<input id="masterPassword" type="{{showPassword ? 'text' : 'password'}}" name="MasterPassword" class="text-monospace form-control"
|
<input id="masterPassword" type="{{showPassword ? 'text' : 'password'}}" name="MasterPassword" class="text-monospace form-control"
|
||||||
[(ngModel)]="masterPassword" required [appAutofocus]="email !== ''">
|
[(ngModel)]="masterPassword" required appAutofocus>
|
||||||
<button type="button" class="ml-1 btn btn-link" appBlurClick title="{{'toggleVisibility' | i18n}}" (click)="togglePassword()">
|
<button type="button" class="ml-1 btn btn-link" appBlurClick title="{{'toggleVisibility' | i18n}}" (click)="togglePassword()">
|
||||||
<i class="fa fa-lg" [ngClass]="{'fa-eye': !showPassword, 'fa-eye-slash': showPassword}"></i>
|
<i class="fa fa-lg" [ngClass]="{'fa-eye': !showPassword, 'fa-eye-slash': showPassword}"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
12
src/app/dummy.module.ts
Normal file
12
src/app/dummy.module.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
|
||||||
|
import { ModalComponent } from 'jslib/angular/components/modal.component';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [],
|
||||||
|
declarations: [
|
||||||
|
ModalComponent,
|
||||||
|
],
|
||||||
|
})
|
||||||
|
export class DummyModule {
|
||||||
|
}
|
||||||
@@ -25,8 +25,6 @@
|
|||||||
"jslib/dist",
|
"jslib/dist",
|
||||||
"jslib/spec",
|
"jslib/spec",
|
||||||
"jslib/src/electron",
|
"jslib/src/electron",
|
||||||
"jslib/src/angular/components/modal.component.ts",
|
|
||||||
"jslib/src/angular/dummy.module.ts",
|
|
||||||
"jslib/src/services/nodeApi.service.ts",
|
"jslib/src/services/nodeApi.service.ts",
|
||||||
"jslib/src/services/lowdbStorage.service.ts",
|
"jslib/src/services/lowdbStorage.service.ts",
|
||||||
"jslib/src/misc/nodeUtils.ts",
|
"jslib/src/misc/nodeUtils.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user