From ab98f5b5a2aaeef1ebba45a9872ccf9c8d51c5f9 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Fri, 5 Jun 2026 21:29:42 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/routlin-dash/app/factory.py b/docker/routlin-dash/app/factory.py index 07764a9..82e17eb 100644 --- a/docker/routlin-dash/app/factory.py +++ b/docker/routlin-dash/app/factory.py @@ -634,7 +634,7 @@ def build_table_picker(name, label, value, rows, headers, summary_config, action # Field renderer ====================================================== def build_field(item, tokens): - label = e(item.get('label', '')) + label = e(apply_tokens(item.get('label', ''), tokens)) name = e(item.get('name', '')) input_type = item.get('input_type', 'text') value = apply_tokens(item.get('value', ''), tokens)