Openstatus www.openstatus.dev

remove tooltip icon when empty (#179)

authored by

Andreas Thomas and committed by
GitHub
3d87a6b3 cb0df4c0

+1 -1
+1 -1
apps/web/src/components/tracker.tsx
··· 83 83 <div className="mb-1 flex justify-between text-sm sm:mb-2"> 84 84 <div className="flex items-center gap-2"> 85 85 <p className="text-foreground font-semibold">{name}</p> 86 - <MoreInfo {...{ url, id, context, description }} /> 86 + { description ? <MoreInfo {...{ url, id, context, description }} /> : null } 87 87 </div> 88 88 <p className="text-muted-foreground font-light">{uptime}</p> 89 89 </div>