Skip to content

Commit

Permalink
Fixed: Errors in EditProductFeatures.ftl (OFBIZ-13016)
Browse files Browse the repository at this point in the history
This should fixes the errors.
  • Loading branch information
JacquesLeRoux committed Apr 13, 2024
1 parent b4e470c commit 3970fc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applications/product/template/product/EditProductFeatures.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ under the License.
<select name='productFeatureApplTypeId' size="1">
<#list productFeatureApplTypes as productFeatureApplType>
<option value='${(productFeatureApplType.productFeatureApplTypeId)!}'
<#if (productFeatureApplType.productFeatureApplTypeId?? && product?? && product.isVirtual == 'Y' && productFeatureApplType.productFeatureApplTypeId =="SELECTABLE_FEATURE")>selected="selected"</#if>
<#if (productFeatureApplType.productFeatureApplTypeId?? && product?? && product.isVirtual == 'N' && productFeatureApplType.productFeatureApplTypeId! =="STANDARD_FEATURE")>selected="selected"</#if>
<#if (productFeatureApplType.productFeatureApplTypeId?? && product?? && product.isVirtual?? && product.isVirtual == 'Y' && productFeatureApplType.productFeatureApplTypeId =="SELECTABLE_FEATURE")>selected="selected"</#if>
<#if (productFeatureApplType.productFeatureApplTypeId?? && product?? && product.isVirtual?? && product.isVirtual == 'N' && productFeatureApplType.productFeatureApplTypeId! =="STANDARD_FEATURE")>selected="selected"</#if>
>${(productFeatureApplType.get("description",locale))!} </option>
</#list>
</select>
Expand Down

0 comments on commit 3970fc2

Please sign in to comment.