Only render signatures if there are > 0
This commit is contained in:
@@ -154,7 +154,7 @@ export const MapNode: React.FC<MapNodeProps> = ({
|
||||
className="pointer-events-none select-none"
|
||||
style={{ textShadow: '1px 1px 2px rgba(0,0,0,0.8)' }}
|
||||
>
|
||||
{signatures !== undefined && `📡 ${signatures}`}
|
||||
{signatures !== undefined && signatures > 0 && `📡 ${signatures}`}
|
||||
</text>
|
||||
</g>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user