Skip to content

Commit b502156

Browse files
authored
fix: 登録情報検索が正常に動作しなくなっていた問題の修正 (#239)
[meta] [version]Version 2.4.2[/version] [contents] 情報が正常に検索されない問題を修正しました。 [/contents] [/meta]
2 parents 5489bfe + 245cfbb commit b502156

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/organisms/mapBase/base.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -281,13 +281,13 @@ const MapBase_: React.FunctionComponent<MapBaseProps> = (props) => {
281281
const req_body = {
282282
geometry: {
283283
type: 'Polygon',
284-
coordinates: [
284+
coordinates: [[
285285
[leftLng, topLat],
286286
[rightLng, topLat],
287287
[rightLng, bottomLat],
288288
[leftLng, bottomLat],
289289
[leftLng, topLat],
290-
],
290+
]],
291291
},
292292
};
293293

src/components/organisms/selectionMap/base.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -267,13 +267,13 @@ const SelectionMap_: React.FunctionComponent<SelectionMapProps> = (props) => {
267267
const req_body = {
268268
geometry: {
269269
type: 'Polygon',
270-
coordinates: [
270+
coordinates: [[
271271
[leftLng, topLat],
272272
[rightLng, topLat],
273273
[rightLng, bottomLat],
274274
[leftLng, bottomLat],
275275
[leftLng, topLat],
276-
],
276+
]],
277277
},
278278
};
279279

0 commit comments

Comments
 (0)