Skip to content

Commit

Permalink
#47: Fix error when re-selecting the prompt.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamfranco committed Dec 20, 2024
1 parent a1aeaac commit 6a1f008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/admin/export_config.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<div class='config-menu'>
<select name='config-selector' id="config-selector">
<option value="select">Select a configuration</option>
<option value="">Select a configuration</option>
{% for config in configs %}
<option value="{{ url('admin_exports_config', {exportId: config.id}) }}" {{ selected_config and selected_config.id == config.id ? 'selected="selected"' }}>{{ config.label }}</option>
{% endfor %}
Expand Down

0 comments on commit 6a1f008

Please sign in to comment.