[UI] Rename all forms to more specific names, to avoid form name collisions

This commit is contained in:
2021-08-18 18:38:54 +01:00
parent 6af1383e07
commit 458b6d0009
7 changed files with 8 additions and 8 deletions

View File

@@ -66,7 +66,7 @@ class ProfileColor
$form = Form::create([
['color', ColorType::class, ['data' => $color, 'label' => _m('Profile Color'), 'help' => _m('Choose your Profile Color')] ],
['hidden', HiddenType::class, []],
['save', SubmitType::class, ['label' => _m('Submit')]],
['save_profile_color', SubmitType::class, ['label' => _m('Submit')]],
]);
$form->handleRequest($request);