diff options
-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{ |