use dialog to duplicate timesheet (#2567)

* fix: display time budget in customer listing if set
* updated api methods with annotations
* do not require checkboxes for system configurations
* open dialog for duplicated timesheets
This commit is contained in:
Kevin Papst
2021-05-12 22:32:08 +02:00
committed by GitHub
parent f81f9ba492
commit f2b32b211b
16 changed files with 271 additions and 230 deletions

View File

@@ -45,7 +45,7 @@ class SystemConfigurationType extends AbstractType
}
$required = $preference->isRequired();
if (CheckboxType::class == $preference->getType()) {
if (CheckboxType::class == $preference->getType() || YesNoType::class == $preference->getType()) {
$required = false;
}