fix cache
This commit is contained in:
parent
d1b7ca404d
commit
441323e0f5
7 changed files with 16 additions and 17 deletions
|
|
@ -8,7 +8,7 @@ $project = [
|
|||
'logo' => $page->client()->isNotEmpty() && $page->client()->toPage()
|
||||
? $page->client()->toPage()->logo()->toFile()->url()
|
||||
: null,
|
||||
'steps' => $page->getStepsFromCache(),
|
||||
'steps' => $page->getSteps(),
|
||||
'designToLight' => $page->isDTLEnabled()->isTrue() ? processDTLProposals($page) : null,
|
||||
'hasOptimizationRequest' => $page->hasOptimizationRequest()->isTrue(),
|
||||
'notifications' => $page->notifications()->yaml(),
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ function getProjectData($project)
|
|||
'currentStep' => $project->currentStep()->value(),
|
||||
'status' => $project->status(),
|
||||
'logo' => $project->client()->toPage() ? $project->client()->toPage()->logo()->toFile()->url() : '',
|
||||
'steps' => $project->getStepsFromCache(),
|
||||
'steps' => $project->getSteps(),
|
||||
'notifications' => Yaml::decode($project->notifications()->value),
|
||||
'uuid' => (string) $project->uuid(),
|
||||
'slug' => (string) $project->slug(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue