Skip to content
Snippets Groups Projects
Commit 6a15c6e9 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #330 - new transaction ui: repeating section is not prefilled correctly

parent 7b679c53
No related branches found
No related tags found
No related merge requests found
Pipeline #256 passed
......@@ -160,7 +160,8 @@
<#list helpers.getRepeatingModifierTypes() as modifierType>
<#assign modifierName=locale.getString(modifierType.getLocalizationKey())>
<#if transaction.getRepeatingOption()??>
<#if transaction.getRepeatingOption().getModifier().getLocalizationKey() == modifierName>
${transaction.getRepeatingOption().getModifier().getLocalizationKey()}
<#if locale.getString(transaction.getRepeatingOption().getModifier().getLocalizationKey()) == modifierName>
<option selected value="${modifierName}">${modifierName}</option>
<#else>
<option value="${modifierName}">${modifierName}</option>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment