diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-29 21:57:05 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-29 21:57:05 -0800 |
commit | eb3c58a9ba085979ece793f565cf5baefc280ac5 (patch) | |
tree | bc58c1fb02ceef1a713941d15491cb59cae078a8 | |
parent | 556196eb51e846b345581813a19c17bea7846a98 (diff) |
fixing k/v for Checkbox input on cache invalidation in config
-rw-r--r-- | system/admin/config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/config/config.go b/system/admin/config/config.go index 103fcdd..0a7103e 100644 --- a/system/admin/config/config.go +++ b/system/admin/config/config.go @@ -70,7 +70,7 @@ func (c *Config) MarshalEditor() ([]byte, error) { View: editor.Checkbox("CacheInvalidate", c, map[string]string{ "label": "Invalidate cache on save", }, map[string]string{ - "Invalidate": "cache", + "invalidate": "Invalidate Cache", }), }, ) |