SiLeBAT / fcl-client

Web app for analyzing food delivery networks
https://silebat.github.io/fcl-client/
GNU General Public License v3.0
7 stars 2 forks source link

Fix row selection bug. #793

Closed arne-z closed 3 months ago

arne-z commented 3 months ago

The onRowSelectionChange function was receiving unexpected parameters. This commit adjusts the function with aditional typeguards to prevent failing under those parameters.

Ticket: Silebat/fcl-client#792

arne-z commented 3 months ago

I've chosen to remove the window.getSelection()?.removeAllRanges(); at the end of the onRowSelectionChange function. This behaviour felt very awkward from a user perspective, as selecting any text in the filter fields became impossible.

If this is the intended behaviour we need to re-include that line.