Skip to content

Commit

Permalink
Reversed order for URL type options (#3999)
Browse files Browse the repository at this point in the history
  • Loading branch information
litvinovg committed Sep 12, 2024
1 parent 1a25a31 commit d82b8f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<label for="urlType">${i18n().url_type}${requiredHint}</label>
<#assign urlTypeOpts = editConfiguration.pageData.urlType />
<select name="urlType" style="margin-top:-2px" >
<#list urlTypeOpts?keys as key>
<#list urlTypeOpts?keys?reverse as key>
<option value="${key}" >
<#if urlTypeOpts[key] == "F1000 Link">
${i18n().faculty_of_1000}
Expand Down

0 comments on commit d82b8f7

Please sign in to comment.