Cannot click on a-tag within a clickable table row

I’ve implemented a table of meetings with rows which can be clicked on in order to go directly to the meeting page associated with that row.

The first column contains a map-marker which when clicked on should fire up google maps, but it doesn’t.

Any ideas what I’m doing incorrectly?

{{#each meeting in meetings}}
    {{#link-to 'meetings.show' meeting tagName="tr"}}
        <td><a {{bind-attr href=meeting.google}} target='_blank'>{{fa-icon 'map-marker'}}</a></td>
        <td>{{meeting.city}}</td>
        <td>{{meeting.weekday}}</td>
        <td>{{meeting.address}}</td>
    {{/link-to}}
{{/each}}

Hey @kgish have you found out how to make that work?

No, haven’t figured it out yet.

I dunno if this will help but you may try to take a peek: