Skip to content

Commit

Permalink
Merge pull request #485 from gregorybesson/develop
Browse files Browse the repository at this point in the history
word_search
  • Loading branch information
gregorybesson authored Jul 25, 2022
2 parents 27a6741 + 5b1aa4c commit ed9f810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Crossword.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function updateWord(array $data, $word)
}

// TODO: Solve the error on binding. The following properties are not binded thru the form
if ($crossword->getGameType() == "crossword") {
if ($crossword->getGameType() == "crossword" || $crossword->getGameType() == "word_search") {
$word->setLayoutColumn($data['layoutColumn']);
$word->setLayoutRow($data['layoutRow']);
$word->setPosition($data['position']);
Expand Down

0 comments on commit ed9f810

Please sign in to comment.