diff --git a/src/workflow/ArcanistWorkflow.php b/src/workflow/ArcanistWorkflow.php --- a/src/workflow/ArcanistWorkflow.php +++ b/src/workflow/ArcanistWorkflow.php @@ -2036,6 +2036,13 @@ protected function getModernUnitDictionary(array $map) { $map = $this->getModernCommonDictionary($map); + + $details = idx($map, 'userData'); + if (strlen($details)) { + $map['details'] = (string)$details; + } + unset($map['userData']); + return $map; }