Skip to content

Commit

Permalink
Settings: allow for setting non-existing(declared) values
Browse files Browse the repository at this point in the history
  • Loading branch information
bbert committed Mar 15, 2021
1 parent d0a383c commit d0a3a1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ function Settings() {
} else {
dest[n] = Utils.clone(source[n]);
}
} else {
dest[n] = Utils.clone(source[n]);
}
}
}
Expand Down

0 comments on commit d0a3a1a

Please sign in to comment.