re-order fields in search form (#2120)

This commit is contained in:
Kevin Papst
2020-11-12 11:14:43 +01:00
committed by GitHub
parent 49a4d1069a
commit 7503899a9b
3 changed files with 7 additions and 7 deletions

View File

@@ -29,14 +29,14 @@ class TimesheetToolbarForm extends AbstractToolbarForm
}
$this->addSearchTermInputField($builder);
if ($options['include_user']) {
$this->addUsersChoice($builder);
}
$this->addDateRangeChoice($builder);
$this->addCustomerMultiChoice($builder, $newOptions, true);
$this->addProjectMultiChoice($builder, $newOptions, true, true);
$this->addActivityMultiChoice($builder, [], true);
$this->addTagInputField($builder);
if ($options['include_user']) {
$this->addUsersChoice($builder);
}
$this->addTimesheetStateChoice($builder);
$this->addExportStateChoice($builder);
$this->addPageSizeChoice($builder);