@lodashventure/medusa-campaign 1.4.21 → 1.4.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -357,6 +357,7 @@ const FlashSalePage = () => {
|
|
|
357
357
|
cell: (info) => info.getValue()
|
|
358
358
|
}),
|
|
359
359
|
columnHelper2.accessor("ends_at", {
|
|
360
|
+
id: "status",
|
|
360
361
|
header: "Status",
|
|
361
362
|
cell: (info) => {
|
|
362
363
|
const date = info.getValue();
|
|
@@ -378,6 +379,7 @@ const FlashSalePage = () => {
|
|
|
378
379
|
}
|
|
379
380
|
}),
|
|
380
381
|
columnHelper2.accessor("ends_at", {
|
|
382
|
+
id: "end_date",
|
|
381
383
|
header: "End Date",
|
|
382
384
|
cell: (info) => {
|
|
383
385
|
const date = info.getValue();
|
|
@@ -351,6 +351,7 @@ const FlashSalePage = () => {
|
|
|
351
351
|
cell: (info) => info.getValue()
|
|
352
352
|
}),
|
|
353
353
|
columnHelper2.accessor("ends_at", {
|
|
354
|
+
id: "status",
|
|
354
355
|
header: "Status",
|
|
355
356
|
cell: (info) => {
|
|
356
357
|
const date = info.getValue();
|
|
@@ -372,6 +373,7 @@ const FlashSalePage = () => {
|
|
|
372
373
|
}
|
|
373
374
|
}),
|
|
374
375
|
columnHelper2.accessor("ends_at", {
|
|
376
|
+
id: "end_date",
|
|
375
377
|
header: "End Date",
|
|
376
378
|
cell: (info) => {
|
|
377
379
|
const date = info.getValue();
|
package/package.json
CHANGED
|
@@ -32,6 +32,7 @@ export const FlashSalePage = () => {
|
|
|
32
32
|
cell: (info) => info.getValue(),
|
|
33
33
|
}),
|
|
34
34
|
columnHelper.accessor("ends_at", {
|
|
35
|
+
id: "status",
|
|
35
36
|
header: "Status",
|
|
36
37
|
cell: (info) => {
|
|
37
38
|
const date = info.getValue();
|
|
@@ -58,6 +59,7 @@ export const FlashSalePage = () => {
|
|
|
58
59
|
},
|
|
59
60
|
}),
|
|
60
61
|
columnHelper.accessor("ends_at", {
|
|
62
|
+
id: "end_date",
|
|
61
63
|
header: "End Date",
|
|
62
64
|
cell: (info) => {
|
|
63
65
|
const date = info.getValue();
|