Skip to content
Snippets Groups Projects
Commit 8ff0d12d authored by Jared Hancock's avatar Jared Hancock
Browse files

events: Fix edited event display for PriorityField

parent 598dedc8
No related branches found
No related tags found
No related merge requests found
......@@ -2086,6 +2086,10 @@ class PriorityField extends ChoiceField {
return ($value instanceof Priority) ? $value->getDesc() : $value;
}
function whatChanged($before, $after) {
return FormField::whatChanged($before, $after);
}
function searchable($value) {
// Priority isn't searchable this way
return null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment