Fixed summary editor mockup not having a release date, resulting in no date showing unless fallback is explicitly enabled.
This commit is contained in:
@@ -87,10 +87,14 @@ const domain = pageContext.routeParams.domain;
|
|||||||
const user = pageContext.user;
|
const user = pageContext.user;
|
||||||
const profile = ref(pageContext.pageProps.profile);
|
const profile = ref(pageContext.pageProps.profile);
|
||||||
|
|
||||||
|
const now = new Date();
|
||||||
|
|
||||||
const mockupRelease = {
|
const mockupRelease = {
|
||||||
id: 1,
|
id: 1,
|
||||||
title: 'Nut For Human Consumption',
|
title: 'Nut For Human Consumption',
|
||||||
effectiveDate: new Date(),
|
date: now,
|
||||||
|
effectiveDate: now,
|
||||||
|
createdAt: new Date(2024, 0, 1),
|
||||||
actors: [
|
actors: [
|
||||||
{
|
{
|
||||||
name: 'Chanel Chakra',
|
name: 'Chanel Chakra',
|
||||||
|
|||||||
2
static
2
static
Submodule static updated: aeef9c536d...75b0bfabb3
@@ -53,6 +53,7 @@ const propProcessors = {
|
|||||||
|
|
||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
|
createdAt: (sceneInfo, options) => format(sceneInfo.createdAt, options.format || 'yyyy-MM-dd'),
|
||||||
};
|
};
|
||||||
|
|
||||||
function curateValue(value, item) {
|
function curateValue(value, item) {
|
||||||
|
|||||||
Reference in New Issue
Block a user