[Feature] Alias Support (#151)

Fixes #149

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#151
This commit is contained in:
2025-10-09 23:14:34 +13:00
parent afeb56622c
commit 68a3f3b982
25 changed files with 675 additions and 31 deletions

View File

@ -64,8 +64,8 @@
$('#set_scenario_modal_form_submit').on('click', function (e) {
e.preventDefault();
if ($('##scenario-select').val().length == 0) {
$('##scenario-select').val([''])
if ($('#scenario-select').val().length == 0) {
$('#scenario-select').val([''])
}
$('#set_scenario_modal_form').submit();
});