Closed
Description
Describe the refactoring action
The current lazy details sends a set of queries along with the rendered data. Those queries is then sent back to the server when the user hovers over an annotation. Finally, the result to the queries are rendered in the popover.
It is unnecessary to send the query as part of rendering. It would be sufficient for the server to get a request for lazy details for a given annotation when the user hovers over it and then the server could immediately respond with all the details.
Expected benefit
Smaller render size, less code to maintain.