budget menu entry placed in different order

This commit is contained in:
Julie Lenaerts 2022-03-25 17:05:41 +01:00
parent f69dab5ca5
commit 632ea710c8
3 changed files with 3 additions and 2 deletions

View File

@ -69,6 +69,7 @@ and this project adheres to
* [household] Within parcours listing page of household add create button (https://gitlab.com/champs-libres/departement-de-la-vendee/accent-suivi-developpement/-/issues/560) * [household] Within parcours listing page of household add create button (https://gitlab.com/champs-libres/departement-de-la-vendee/accent-suivi-developpement/-/issues/560)
* [person_resource] bugfix when adding thirdparty or freetext resource + prevent personOwner themselves to be added. (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/526) * [person_resource] bugfix when adding thirdparty or freetext resource + prevent personOwner themselves to be added. (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/526)
* [aside_activity] style correction + sticky-form create button (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/529) * [aside_activity] style correction + sticky-form create button (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/529)
* [budget] order within the menu adjusted (https://gitlab.com/champs-libres/departement-de-la-vendee/accent-suivi-developpement/-/issues/592)
## Test releases ## Test releases

View File

@ -42,7 +42,7 @@ class HouseholdMenuBuilder implements LocalMenuBuilderInterface
'routeParameters' => [ 'routeParameters' => [
'id' => $household->getId(), 'id' => $household->getId(),
], ]) ], ])
->setExtras(['order' => 50]); ->setExtras(['order' => 19]);
// } // }
} }

View File

@ -44,7 +44,7 @@ class PersonMenuBuilder implements LocalMenuBuilderInterface
'routeParameters' => ['id' => $person->getId()], 'routeParameters' => ['id' => $person->getId()],
] ]
) )
->setExtra('order', 4000); ->setExtra('order', 59);
} }
} }