Browse Source

지도 검색 replace 수정

pull/2/head
junh_eee 2 years ago
parent
commit
998abfede5
  1. 4
      src/components/basis/flight/plan/FlightPlanAreaMap.js

4
src/components/basis/flight/plan/FlightPlanAreaMap.js

@ -224,8 +224,8 @@ const FlightPlanAreaMap = props => {
{searchRes?.length!=0 && isSearch? (
searchRes?.map((prev, idx) => {
let title = prev.title.replace('<b>',' ');
title = title.replace('</b>',' ');
let title = prev.title.replaceAll('<b>','');
title = title.replaceAll('</b>','');
return (
<>

Loading…
Cancel
Save