From e6f58e89bfe6fc5006626b634c41727fc8fedea5 Mon Sep 17 00:00:00 2001 From: Benn Oshrin Date: Sun, 7 Aug 2022 06:53:23 -0400 Subject: [PATCH] Fix handling of resolution_time for unresolved requests (NOJIRA) --- app/templates/MatchgridRecords/fields.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/templates/MatchgridRecords/fields.inc b/app/templates/MatchgridRecords/fields.inc index b39a255f4..204e9d4a8 100644 --- a/app/templates/MatchgridRecords/fields.inc +++ b/app/templates/MatchgridRecords/fields.inc @@ -55,5 +55,6 @@ if($action == 'add' || $action == 'edit') { if($action == 'edit') { print $this->Field->control('request_time'); - print $this->Field->control('resolution_time'); + // Force resolution to read only since it might not be populated + print $this->Field->control('resolution_time', ['readonly' => true]); } \ No newline at end of file