We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617ff0f commit 7d5725dCopy full SHA for 7d5725d
2 files changed
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+## [1.8.4] - 2025-02-14
11
+
12
+- Fix server edit/create bug
13
14
## [1.8.3] - 2025-02-06
15
16
- Fix missing "depends" in docker compose
src/Controller/Admin/ServerCrudController.php
@@ -92,7 +92,7 @@ public function configureFields(string $pageName): iterable
92
yield TextField::new('serviceDeskTicket')->setColumns(12)->hideOnIndex();
93
yield TextareaField::new('note')->hideOnIndex()->setColumns(6);
94
yield TextareaField::new('usedFor')->hideOnIndex()->setColumns(6);
95
- yield DateTimeField::new('lastContactAt');
+ yield DateTimeField::new('lastContactAt')->hideOnForm();
96
}
97
98
#[\Override]
0 commit comments