Fix formatting

This commit is contained in:
d-buchmann 2025-05-22 15:00:22 +02:00
parent 334a37a9d0
commit 26ee564481
2 changed files with 16 additions and 16 deletions

View file

@ -53,17 +53,17 @@ class SelectAPIController extends AbstractController
#[Route(path: '/tag', name: 'select_tag')]
public function tag(): Response
{
$tags = [
$tags = [
'text' => 'test',
'value' => 'test',
];
$this->addEmptyNode($tags);
// pseudocode:
// for each part in selection
// use TagFilter to find tags
// dedupe
return $this->json($tags);
$this->addEmptyNode($tags);
// pseudocode:
// for each part in selection
// use TagFilter to find tags
// dedupe
return $this->json($tags);
#[Route(path: '/category', name: 'select_category')]
public function category(): Response
{