Skip to content

Commit

Permalink
Merge pull request Sylius#7832 from mbabker/translatable-grid-filters
Browse files Browse the repository at this point in the history
Make the label for the string filter input translatable
  • Loading branch information
pjedrzejewski committed Mar 28, 2017
2 parents 1c505f3 + aaf03b4 commit 91da139
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -48,7 +48,10 @@ public function buildForm(FormBuilderInterface $builder, array $options)
}

$builder
->add('value', TextType::class, ['required' => false])
->add('value', TextType::class, [
'required' => false,
'label' => 'sylius.ui.value',
])
;
}

Expand Down

0 comments on commit 91da139

Please sign in to comment.