fix(medusa): Allow de-selecting configurations in price lists (#1596)

This commit is contained in:
Philip Korsholm
2022-05-30 19:34:34 +02:00
committed by GitHub
parent d0c679fc7e
commit 3f23edea23
4 changed files with 104 additions and 68 deletions
@@ -128,10 +128,10 @@ export class AdminPostPriceListsPriceListPriceListReq {
description?: string
@IsOptional()
starts_at?: Date
starts_at?: Date | null
@IsOptional()
ends_at?: Date
ends_at?: Date | null
@IsOptional()
@IsEnum(PriceListStatus)