Skip to content

Commit

Permalink
fix(admin-ui) Create product variant with 0.00 as price
Browse files Browse the repository at this point in the history
  • Loading branch information
oidt committed Mar 8, 2024
1 parent c933ed2 commit e8c44b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class CreateProductVariantDialogComponent implements Dialog<CreateProduct
form = this.formBuilder.group({
name: ['', Validators.required],
sku: ['', Validators.required],
price: ['', Validators.required],
price: [''],
options: this.formBuilder.record<string>({}),
});
existingVariant: NonNullable<GetProductVariantOptionsQuery['product']>['variants'][number] | undefined;
Expand Down

0 comments on commit e8c44b7

Please sign in to comment.