diff --git a/frontend/src/app/components/dashboard/db-table-view/db-table-view.component.html b/frontend/src/app/components/dashboard/db-table-view/db-table-view.component.html index 0d0e546c8..7670a1746 100644 --- a/frontend/src/app/components/dashboard/db-table-view/db-table-view.component.html +++ b/frontend/src/app/components/dashboard/db-table-view/db-table-view.component.html @@ -152,7 +152,7 @@

{{ displayName }}

angulartics2On="click" angularticsAction="Dashboard: settings dropdown is clicked" (click)="posthog.capture('Dashboard: settings dropdown is clicked')"> - more_vert + settings {{ displayName }} angulartics2On="click" angularticsAction="Dashboard: edit row is clicked" matTooltip="Edit row" - (click)="stashUrlParams(); posthog.capture('Dashboard: edit row is clicked')"> + (click)="$event.stopPropagation(); stashUrlParams(); posthog.capture('Dashboard: edit row is clicked')"> create {{ displayName }} angulartics2On="click" angularticsAction="Dashboard: duplicate row is clicked" matTooltip="Duplicate row" - (click)="stashUrlParams(); posthog.capture('Dashboard: duplicate row is clicked')"> + (click)="$event.stopPropagation(); stashUrlParams(); posthog.capture('Dashboard: duplicate row is clicked')"> difference