From 323954243b7ebc99eea9e55a62dddd567758cd5e Mon Sep 17 00:00:00 2001 From: BatJan Date: Sat, 23 Jun 2018 13:36:07 +0200 Subject: [PATCH] Change description text I changed the description text since it's no longer necessary to make a custom value converter when selecting the JSON option. It's handled out of the box now. **The original text** "Select whether to store the tags in cache as CSV (default) or as JSON. The only benefits of storage as JSON is that you are able to have commas in a tag value but this will require parsing the json in your views or using a property value converter" **New text** "Select whether to store the tags in cache as CSV (default) or as JSON. The only benefits of storage as JSON is that you are able to have commas in a tag value" --- src/Umbraco.Web/PropertyEditors/TagsPropertyEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web/PropertyEditors/TagsPropertyEditor.cs b/src/Umbraco.Web/PropertyEditors/TagsPropertyEditor.cs index b44c65b157..1faa6ed0ab 100644 --- a/src/Umbraco.Web/PropertyEditors/TagsPropertyEditor.cs +++ b/src/Umbraco.Web/PropertyEditors/TagsPropertyEditor.cs @@ -133,7 +133,7 @@ namespace Umbraco.Web.PropertyEditors Fields.Add(new PreValueField(new ManifestPropertyValidator {Type = "Required"}) { - Description = "Select whether to store the tags in cache as CSV (default) or as JSON. The only benefits of storage as JSON is that you are able to have commas in a tag value but this will require parsing the json in your views or using a property value converter", + Description = "Select whether to store the tags in cache as CSV (default) or as JSON. The only benefits of storage as JSON is that you are able to have commas in a tag value", Key = "storageType", Name = "Storage Type", View = "views/propertyeditors/tags/tags.prevalues.html" @@ -154,4 +154,4 @@ namespace Umbraco.Web.PropertyEditors } } } -} \ No newline at end of file +}