From 13e7ff97b6a46720eee194d1422d9ee04de862e8 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 8 Mar 2023 11:53:48 -0700 Subject: [PATCH] Fix description label did not get row value in nextmatch Fixes projectmanager price list showed "5 / $row_cont[pl_unit]" instead of "5 / h" --- api/js/etemplate/Et2Description/Et2Description.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/etemplate/Et2Description/Et2Description.ts b/api/js/etemplate/Et2Description/Et2Description.ts index 489c99f34b..e10c4f90a4 100644 --- a/api/js/etemplate/Et2Description/Et2Description.ts +++ b/api/js/etemplate/Et2Description/Et2Description.ts @@ -250,7 +250,7 @@ export class Et2Description extends Et2Widget(LitElement) implements et2_IDetach getDetachedAttributes(attrs) { - attrs.push("id", "value", "class", "href"); + attrs.push("id", "label", "value", "class", "href"); } getDetachedNodes() : HTMLElement[]