Browse Source
Update packages/web/src/components/PageComponents/Map/Popups/WaypointDetail.tsx
Co-authored-by: Copilot <[email protected]>
pull/896/head
Dan Ditomaso
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
packages/web/src/components/PageComponents/Map/Popups/WaypointDetail.tsx
|
|
|
@ -172,7 +172,7 @@ export const WaypointDetail = ({ waypoint, myNode }: WaypointDetailProps) => { |
|
|
|
)} |
|
|
|
|
|
|
|
{/* Locked To */} |
|
|
|
{waypoint.lockedTo !== 0 && ( |
|
|
|
{waypoint.lockedTo != null && waypoint.lockedTo !== 0 && ( |
|
|
|
<div className="flex flex-wrap items-start gap-x-3"> |
|
|
|
<dt className="inline-flex items-center gap-2 text-slate-500 min-w-0"> |
|
|
|
<UserLockIcon size={14} aria-hidden /> |
|
|
|
|