mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-31 03:52:01 +08:00
Bugfix: Translator append() should be appendChild()
This commit is contained in:
parent
5e7b567e88
commit
4977494f6b
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ export function reload(admin, language) {
|
|||
.then(data => {
|
||||
var script = doc.createElement('script');
|
||||
script.text = data;
|
||||
doc.head.append(script).remove();
|
||||
doc.head.appendChild(script).remove();
|
||||
setTimeout(
|
||||
() => {
|
||||
reloadData();
|
||||
|
|
Loading…
Reference in a new issue