diff --git a/src/MistoxWebsite.Client/src/app/pages/account/forgotpassword/forgotpassword.component.ts b/src/MistoxWebsite.Client/src/app/pages/account/forgotpassword/forgotpassword.component.ts index ca4b721..cc9c698 100644 --- a/src/MistoxWebsite.Client/src/app/pages/account/forgotpassword/forgotpassword.component.ts +++ b/src/MistoxWebsite.Client/src/app/pages/account/forgotpassword/forgotpassword.component.ts @@ -31,7 +31,7 @@ export class ForgotPasswordComponent { this.errorMsgs = []; // Send to server and wait for response - this.errorMsgs.push("Waiting for login response from server"); + this.errorMsgs.push("Waiting for response from server"); const body = new HttpParams() .set("Email", this.email) const headers = new HttpHeaders({ diff --git a/src/MistoxWebsite.Client/src/app/pages/account/resetpassword/resetpassword.component.ts b/src/MistoxWebsite.Client/src/app/pages/account/resetpassword/resetpassword.component.ts index 4b3c070..7da0cf5 100644 --- a/src/MistoxWebsite.Client/src/app/pages/account/resetpassword/resetpassword.component.ts +++ b/src/MistoxWebsite.Client/src/app/pages/account/resetpassword/resetpassword.component.ts @@ -40,7 +40,7 @@ export class ResetPasswordComponent { } if (this.errorMsgs.length == 0){ // Send to server and wait for response - this.errorMsgs.push("Waiting for login response from server"); + this.errorMsgs.push("Waiting for response from server"); const body = new HttpParams() .set("UserName", this.UserName) .set("NewPassword", this.Password) diff --git a/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.html b/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.html index c3b9abe..effc8c4 100644 --- a/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.html +++ b/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.html @@ -24,7 +24,7 @@
- +
diff --git a/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.ts b/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.ts index cd1b6d0..b95958a 100644 --- a/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.ts +++ b/src/MistoxWebsite.Client/src/app/pages/store/admin/newitem/new.component.ts @@ -43,6 +43,7 @@ export class NewItemComponent { onFileSelected(event: Event){ const fileInput = event.target as HTMLInputElement; this.imagePreviews = []; + this.selectedFiles = []; if (!fileInput.files?.length){ return;