chore: Reverse sanitize variable so it defaults to false

This commit is contained in:
Johannes Schill
2019-01-21 16:13:26 +01:00
parent 15d560a1c0
commit 1ed35f3dc1
4 changed files with 7 additions and 7 deletions

View File

@@ -35,7 +35,7 @@ export class Settings {
loginHint: any;
loginError: any;
viewersCanEdit: boolean;
sanitizeInput: boolean;
disableSanitizeInput: boolean;
constructor(options: Settings) {
const defaults = {
@@ -53,7 +53,7 @@ export class Settings {
isEnterprise: false,
},
viewersCanEdit: false,
sanitizeInput: true
disableSanitizeInput: false
};
_.extend(this, defaults, options);