Skip to content

Commit

Permalink
Merge pull request #210 from NilsRec/feature/fix-merge-report-and-axi…
Browse files Browse the repository at this point in the history
…s-command

🐛 [MergeFieldsCommand] Fixed prop name
  • Loading branch information
NilsRec authored May 14, 2024
2 parents f0d6d85 + c361b7b commit b01e330
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ DEPLOYER = $(BIN)/dep

.PHONY :

cs: rector fix stan test
cs: rector fix stan

ci: rector fix stan test

fixture:
@$(CONSOLE) doctrine:fixtures:load --env=test -n
Expand Down
2 changes: 1 addition & 1 deletion client/src/Pages/Workshops/Components/WorkshopForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const WorkshopForm: React.FC<WorkshopFormProps> = ({workshop, onSubmit}) => {
<FormTextField
id='improvementAxis'
value={values.improvementAxis}
label="Bolan global et axes d'amélioration"
label="Bilan global et axes d'amélioration"
multiline={true}
rows='4'
handleChange={handleChange}
Expand Down
2 changes: 1 addition & 1 deletion src/Command/MergeReportAndAxisCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

/** @var Workshop[] $workshopsWithReport */
$workshopsWithReport = $this->repository->createQueryBuilder('w')
->where('w.report IS NOT NULL')
->where('w.globalReport IS NOT NULL')
->getQuery()
->getResult();

Expand Down

0 comments on commit b01e330

Please sign in to comment.