Skip to content

Commit

Permalink
update sing
Browse files Browse the repository at this point in the history
  • Loading branch information
nikiquickie committed Dec 4, 2024
1 parent 27f6b9b commit c49bdf3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{product}}
<wtable
title="Commerceproductquantities"
[columns]="columns"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { TranslateService } from 'src/app/core/modules/translate/translate.servi
import { FormInterface } from 'src/app/core/modules/form/interfaces/form.interface';
import { commerceproductquantityFormComponents } from '../../formcomponents/commerceproductquantity.formcomponents';
import { Route, Router } from '@angular/router';
import { log } from 'console';

@Component({
templateUrl: './commerceproductquantities.component.html',
Expand All @@ -27,9 +28,11 @@ export class CommerceproductquantitiesComponent {
this._form.modal<Commerceproductquantity>(this.form, {
label: 'Create',
click: (created: unknown, close: () => void) => {

if (this.product) {
(created as Commerceproductquantity).product = this.product;
}

if (this.store) {
(created as Commerceproductquantity).store = this.store;
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/guest/sign/sign.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class SignComponent {
});

user = {
email: 'ceo@webart.work',
email: 'demo@webart.work',
password: 'asdasdasdasd',
resetPin: null
};
Expand Down

0 comments on commit c49bdf3

Please sign in to comment.