From d21540878e45c05eb12acdada9bcf57ca6a9770a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 11 Jun 2018 08:54:48 -0400 Subject: [PATCH] prod build fixes --- jslib | 2 +- src/app/accounts/lock.component.html | 4 ++-- src/app/dummy.module.ts | 12 ++++++++++++ tsconfig.json | 2 -- 4 files changed, 15 insertions(+), 5 deletions(-) create mode 100644 src/app/dummy.module.ts diff --git a/jslib b/jslib index cd3c2ddff1..d875b9aeb0 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit cd3c2ddff1abd66c6318d981a389685dc82cfc0e +Subproject commit d875b9aeb0013ff0802c1a9a1e6a8eb2fb8ef156 diff --git a/src/app/accounts/lock.component.html b/src/app/accounts/lock.component.html index 64aef34a07..af465e81ba 100644 --- a/src/app/accounts/lock.component.html +++ b/src/app/accounts/lock.component.html @@ -1,4 +1,4 @@ -
+

@@ -11,7 +11,7 @@

+ [(ngModel)]="masterPassword" required appAutofocus> diff --git a/src/app/dummy.module.ts b/src/app/dummy.module.ts new file mode 100644 index 0000000000..62b7969531 --- /dev/null +++ b/src/app/dummy.module.ts @@ -0,0 +1,12 @@ +import { NgModule } from '@angular/core'; + +import { ModalComponent } from 'jslib/angular/components/modal.component'; + +@NgModule({ + imports: [], + declarations: [ + ModalComponent, + ], +}) +export class DummyModule { +} diff --git a/tsconfig.json b/tsconfig.json index b5ee7a3abf..d753ada085 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,8 +25,6 @@ "jslib/dist", "jslib/spec", "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/lowdbStorage.service.ts", "jslib/src/misc/nodeUtils.ts",