Field does not display correctly on list view and display the data from the field next to it.Issue The columns right of "Resolved" field are moved to left. The data under Resolved field is not displayed correctly ReleaseConfirmed on New York CauseField Style defined for 'resolved_at' which is setting the following CSS for the field:display:none This translates on the Incident list (or any list) by hiding the for the field on a record that does not have a value i.e. If resolved_at is empty for an Incident, the cell for that field will be hidden on the list. How this will be handled by tags is by shifting the rest of the elements in a over to the left. You can see this behavior by inspecting the HTML for the Incident list and removing the "display:none" style from one of the records; The "(empty)" text will appear and the field values will be shifted over to the right, displayed underneath their respective columns correctly.ResolutionRemove the field style on the resolved_at field and this should solve the problem