From 0a3a07da1292def3b700d3212876e05a99e334cc Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Wed, 3 Apr 2024 20:04:14 +0200 Subject: [PATCH] fixed column without title-formatting --- src/web/layout/labels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/layout/labels.py b/src/web/layout/labels.py index b7081d7..800b498 100644 --- a/src/web/layout/labels.py +++ b/src/web/layout/labels.py @@ -117,7 +117,7 @@ for title, options in textual_map.items(): id_dict = {'type': 'annotation', 'index': title.replace('_', '-')} textual_container.children.append( dmc.Container([ - html.B(title), + html.B(title.title()), dcc.RadioItems( options=options, id=id_dict,