client brief : fix validate button display
This commit is contained in:
parent
3f0b29d2d3
commit
bb44f7727e
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ class ProjectPage extends Page {
|
||||||
'slug' => $child->slug(),
|
'slug' => $child->slug(),
|
||||||
'index' => intval($child->stepIndex()->value()),
|
'index' => intval($child->stepIndex()->value()),
|
||||||
'modified' => $child->modified('Y-MM-dd'),
|
'modified' => $child->modified('Y-MM-dd'),
|
||||||
'isValidated' => (bool) $child->isValidated()->value() ?? false,
|
'isValidated' => $child->isValidated() == 'true' ? true : false,
|
||||||
'uri' => $uri,
|
'uri' => $uri,
|
||||||
'files' => $files,
|
'files' => $files,
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue