small word changes

This commit is contained in:
Charles 2026-01-28 11:24:21 +01:00
parent ce82296fa6
commit 4b3a960e59
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ export default class extends Controller {
ajaxSorting: true,
ajaxFiltering: true,
rowHeight: 60,
layout: "fitColumns", // activate French
layout: "fitColumns",
columns: [
{
title: "Logo",

View File

@ -22,7 +22,7 @@ class UserForm extends AbstractType
->add('phoneNumber', TextType::class, ['required' => false, 'label' => 'Numéro de téléphone'])
->add('pictureUrl', FileType::class, [
'required' => false,
'label' => 'Logo',
'label' => 'Photo de profil',
'mapped' => false, // Important if the entity property is not directly mapped
'attr' => ['accept' => 'image/*'],
]);