webapp: Fix #532: Use correct filename for config backup
This commit is contained in:
parent
9f86698dfc
commit
0772fd02aa
@ -201,7 +201,7 @@ export default defineComponent({
|
||||
var file = window.URL.createObjectURL(blob);
|
||||
var a = document.createElement('a');
|
||||
a.href = file;
|
||||
a.download = "config.json";
|
||||
a.download = this.backupFileSelect;
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
a.remove();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user