mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-03 05:22:26 +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 => {
|
.then(data => {
|
||||||
var script = doc.createElement('script');
|
var script = doc.createElement('script');
|
||||||
script.text = data;
|
script.text = data;
|
||||||
doc.head.append(script).remove();
|
doc.head.appendChild(script).remove();
|
||||||
setTimeout(
|
setTimeout(
|
||||||
() => {
|
() => {
|
||||||
reloadData();
|
reloadData();
|
||||||
|
|
Loading…
Reference in a new issue