diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-01-16 15:44:31 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-01-16 15:44:31 -0800 |
commit | 316d456cd990182ba7136a3550f6d6e3e9b4b960 (patch) | |
tree | 7543be03fae8aeeacc8eb48dbe16ab2d42fbca0b | |
parent | 61ab44352906ae598fce12e47dbd7af9d17988cf (diff) |
adding different identifier to checkbox in config
-rw-r--r-- | system/admin/config/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/admin/config/config.go b/system/admin/config/config.go index 3605514..0d55700 100644 --- a/system/admin/config/config.go +++ b/system/admin/config/config.go @@ -80,14 +80,14 @@ func (c *Config) MarshalEditor() ([]byte, error) { View: editor.Checkbox("DisableCORS", c, map[string]string{ "label": "Disable CORS (so only " + c.Domain + " can fetch your data)", }, map[string]string{ - "true": "Disable", + "true": "Disable CORS", }), }, editor.Field{ View: editor.Checkbox("DisableGZIP", c, map[string]string{ "label": "Disable GZIP (will increase server speed, but also bandwidth)", }, map[string]string{ - "true": "Disable", + "true": "Disable GZIP", }), }, editor.Field{ |