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:
2026-06-17 17:39:53 +07:00
parent bfbbb66747
commit 98e4a4a340
2 changed files with 8 additions and 3 deletions
@@ -460,7 +460,7 @@ export const ItineraryTimeline = ({
Thực tế: {format(parseISO(location.actualStart), 'HH:mm')}
</div>
)}
{canEdit && !isStartPoint && !isEndPoint && ( // Only show edit/delete if canEdit
{canEdit && ( // Allow editing and deleting of all locations if user has edit permissions
<div className="flex gap-1 mt-2">
<button onClick={() => onEditLocation?.(location)} className="p-1 text-gray-400 hover:text-blue-600 transition-colors">
<Edit2 className="w-3.5 h-3.5" />
+7 -2
View File
@@ -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)}