This commit is contained in:
isUnknown 2025-05-26 14:09:07 +02:00
parent 1064432984
commit 8c749030ba
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ tabs:
columns: 6 columns: 6
options: options:
type: query type: query
query: page.getRefreshedSteps query: page.getStepsFromCache
text: "{{ item.label }}" text: "{{ item.label }}"
value: "{{ item.id }}" value: "{{ item.id }}"
required: true required: true

View file

@ -9,7 +9,7 @@ class ProjectPage extends NotificationsPage {
if (!$stepsData) { if (!$stepsData) {
$steps = $newPage->getRefreshedSteps(true); $steps = $newPage->getRefreshedSteps(true);
refreshProjectStepsCache($project, $steps); refreshProjectStepsCache($this, $steps);
return $steps; return $steps;
}; };
return $stepsData; return $stepsData;