Fix tabindex expansion
authorKarl O. Pinc <kop@karlpinc.com>
Mon, 9 Sep 2024 22:57:21 +0000 (17:57 -0500)
committerKarl O. Pinc <kop@karlpinc.com>
Mon, 9 Sep 2024 22:57:21 +0000 (17:57 -0500)
src/pgwui_develop/TEMPLATE/src/pgwui_TEMPLATE/templates/TEMPLATE.mak.makish

index d4d8b24cb8e2adc48ff12fe4df5d3b125c900260..ba2011bad3fad95b0f12a7f172c699d88a2da7a9 100644 (file)
@@ -61,7 +61,7 @@
 < %% def name="example_row(tab_index)">
       <tr>
         < %% self.lib:td_label for_id="example_id">Example</ %% self.lib:td_label>
-        < %% self.lib:td_input tab_index="${tab_index}">
+        < %% self.lib:td_input tab_index="$ {tab_index}">
           <input name="example"
                  tabindex="$ {tab_index.val}"
                  id="example_id"
@@ -74,6 +74,6 @@
 </ %% def>
 
 < %%  tab_index = self.attr.TabIndex()  %% >
-< %% self:main_form tab_index="${tab_index}" args="tab_index">
+< %% self:main_form tab_index="$ {tab_index}" args="tab_index">
   $ {example_row(tab_index)}
 </ %% self:main_form>