fix: lỗi không xuất hiện nút sửa cho điểm bắt đầu và điểm kết thúc
This commit is contained in:
@@ -1026,8 +1026,13 @@ export const TourDetailPage = ({
|
||||
setEditingLocation(loc);
|
||||
setTargetLegId(loc.legId);
|
||||
setMapCenter([loc.latitude, loc.longitude]);
|
||||
setIsStartPointAction(false);
|
||||
setIsEndPointAction(false);
|
||||
|
||||
// Kiểm tra xem địa điểm đang sửa có phải là điểm mốc đặc biệt không (dựa trên timestamp 1970)
|
||||
const isStart = loc.plannedStart && new Date(loc.plannedStart).getTime() === 0;
|
||||
const isEnd = loc.plannedEnd && new Date(loc.plannedEnd).getTime() === 0;
|
||||
setIsStartPointAction(!!isStart);
|
||||
setIsEndPointAction(!!isEnd);
|
||||
|
||||
setIsAddLocationOpen(true);
|
||||
}}
|
||||
onQuickNote={(locName: string) => handleQuickNote(locName)}
|
||||
|
||||
Reference in New Issue
Block a user