mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
chore: Reverse sanitize variable so it defaults to false
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user