File tree Expand file tree Collapse file tree
src/frontend/src/Components/events Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export default function EventCard(props) {
6262 < div className = "header" > { showLoader ? < Skeleton /> : 'Location' } </ div >
6363 < div className = "content" >
6464 { showLoader ? < Skeleton count = { 2 } width = { 200 } /> :
65- ( event . display_category === 'chainUps' ? event . highway_segment_names : event . location_description ) }
65+ ( event . display_category === 'chainUps' ? event . highway_segment_names : parse ( event . location_description ) ) }
6666 </ div >
6767 </ div >
6868
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export default function EventsTable(props) {
9292 header : < span tabIndex = { 0 } > { 'Location' } </ span > ,
9393 accessorKey : 'location_description' ,
9494 sortingFn : 'severitySort' , // override to sort by severity instead
95- cell : ( props ) => < span > { props . getValue ( ) } </ span > ,
95+ cell : ( props ) => < span > { parse ( props . getValue ( ) ) } </ span > ,
9696 } ,
9797 {
9898 header : < span tabIndex = { 0 } > { 'Closest Landmark' } </ span > ,
You can’t perform that action at this time.
0 commit comments