From ba2fece73ec2a7a9da15865027c49d29bbf3d69b Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Thu, 11 Mar 2021 22:39:30 +1100 Subject: [PATCH] BLT editor: Fix bug where name not saved --- html/blt/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/blt/index.js b/html/blt/index.js index b13991e..41eace9 100644 --- a/html/blt/index.js +++ b/html/blt/index.js @@ -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; }