BLT editor: Fix bug where name not saved

This commit is contained in:
RunasSudo 2021-03-11 22:39:30 +11:00
parent 71de14ecfc
commit ba2fece73e
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ function clickExportBLT() {
result = window.prompt('Enter the name of the election:');
if (result !== null) {
election.name = result;
election.py_name = result;
} else {
return;
}