From 2bd5013c97e9a851cc2619c056a611634668abc7 Mon Sep 17 00:00:00 2001 From: Lyubov Voloshko Date: Wed, 29 Apr 2026 12:10:23 +0000 Subject: [PATCH] table view: fix link clicks on table rows and change icon on Settings button --- .../dashboard/db-table-view/db-table-view.component.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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