diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-26 16:36:05 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-26 16:36:05 -0700 |
commit | d2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0 (patch) | |
tree | 4b5c40e81d0b615469c6842a9b6603ed4b3964af /modern/src/other | |
parent | 6226b06271ae75e0be28dd16c64cf2e3c7392718 (diff) | |
download | trackermap-web-d2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0.tar.gz trackermap-web-d2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0.tar.bz2 trackermap-web-d2af6d5f6b24928d63d7ce7152b4eab4ade7a5b0.zip |
Rename path map plugin
Diffstat (limited to 'modern/src/other')
-rw-r--r-- | modern/src/other/ReplayPage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/other/ReplayPage.js b/modern/src/other/ReplayPage.js index 14f9d79b..9331777e 100644 --- a/modern/src/other/ReplayPage.js +++ b/modern/src/other/ReplayPage.js @@ -14,7 +14,7 @@ import FastRewindIcon from '@mui/icons-material/FastRewind'; import { useNavigate } from 'react-router-dom'; import { useSelector } from 'react-redux'; import Map from '../map/core/Map'; -import MapReplayPath from '../map/MapReplayPath'; +import MapRoutePath from '../map/MapRoutePath'; import MapPositions from '../map/MapPositions'; import { formatTime } from '../common/util/formatter'; import ReportFilter from '../reports/components/ReportFilter'; @@ -144,7 +144,7 @@ const ReplayPage = () => { return ( <div className={classes.root}> <Map> - <MapReplayPath positions={positions} /> + <MapRoutePath positions={positions} /> {index < positions.length && ( <MapPositions positions={[positions[index]]} onClick={onClick} /> )} |