From d4aa6f2ebfeadeee21e89285c2c3c059828ec0f4 Mon Sep 17 00:00:00 2001 From: Mike Burgess Date: Mon, 7 Mar 2022 17:28:33 +0000 Subject: [PATCH] Row keys in dashboard table linking should be available at the top-level of jq (e.g. .column_name) rather than nested under .row #1551. --- ui/dashboard/src/components/dashboards/Table/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/dashboard/src/components/dashboards/Table/index.tsx b/ui/dashboard/src/components/dashboards/Table/index.tsx index 2d1232524..47009a24c 100644 --- a/ui/dashboard/src/components/dashboards/Table/index.tsx +++ b/ui/dashboard/src/components/dashboards/Table/index.tsx @@ -112,7 +112,7 @@ const CellValue = ({ const render = async () => { const renderedVal = await getInterpolatedTemplateValue( column.href_template, - { row } + { ...row } ); // console.log(renderedVal); setHref(renderedVal);