Redisign filter
This commit is contained in:
parent
b8a5ade3e0
commit
9a9bbb310a
2 changed files with 9 additions and 14 deletions
|
@ -6,6 +6,7 @@ use Symfony\Component\Form\AbstractType;
|
|||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\NumberType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
|
||||
class OfferFilterFormType extends AbstractType
|
||||
|
@ -19,6 +20,7 @@ class OfferFilterFormType extends AbstractType
|
|||
->add('distance', NumberType::class, [
|
||||
'label' => 'Distance',
|
||||
])
|
||||
->add('Apply', SubmitType::class)
|
||||
;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue