Skip to content

Commit 7d5725d

Browse files
committed
Fix server edit/create bug
1 parent 617ff0f commit 7d5725d

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.8.4] - 2025-02-14
11+
12+
- Fix server edit/create bug
13+
1014
## [1.8.3] - 2025-02-06
1115

1216
- Fix missing "depends" in docker compose

src/Controller/Admin/ServerCrudController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function configureFields(string $pageName): iterable
9292
yield TextField::new('serviceDeskTicket')->setColumns(12)->hideOnIndex();
9393
yield TextareaField::new('note')->hideOnIndex()->setColumns(6);
9494
yield TextareaField::new('usedFor')->hideOnIndex()->setColumns(6);
95-
yield DateTimeField::new('lastContactAt');
95+
yield DateTimeField::new('lastContactAt')->hideOnForm();
9696
}
9797

9898
#[\Override]

0 commit comments

Comments
 (0)