Inputs in repeating sections need to be explicitly types as text in order to display information within the repeating section template. If an input is included with no type, it behaves improperly and may not store data. This code will reproduce the issue: < h3 > Skills < /h3 >
< fieldset class = "repeating_skills" >
< button type = "roll" name = "roll_skill" value = "/em uses @{skillname}, and rolls [[@{dtype}]]" > <span name="attr_skillname"></span> < /button > < input name = "attr_skillname" value = "" >
< select name = "attr_dtype" class = "dtype" >
< option value = "d6" > d6 < /option >
< option value = "d10" > d10 < /option >
< /select >
< /fieldset > while this code will work as expected: < fieldset class = "repeating_skills" >
< button type = "roll" name = "roll_skill" value = "/em uses @{skillname}, and rolls [[@{dtype}]]" > <span name="attr_skillname"></span> < /button > < input type="Text"name = "attr_skillname" value = "" >
< select name = "attr_dtype" class = "dtype" >
< option value = "d6" > d6 < /option >
< option value = "d10" > d10 < /option >
< /select >
< /fieldset > Text is the default type for input so these two code snippets should behave the same way. Description of setup Browser + Version: Firefox 98.0.2 Browser Addons/Extensions: None applicable Operating System: Linux