We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1347b97 commit 1d6849cCopy full SHA for 1d6849c
src/Umbraco.Core/PropertyEditors/PropertyValueConverterBase.cs
@@ -17,6 +17,10 @@ public virtual bool IsConverter(IPublishedPropertyType propertyType)
17
{
18
case PropertyValueLevel.Source:
19
return value != null && (!(value is string) || string.IsNullOrWhiteSpace((string) value) == false);
20
+ case PropertyValueLevel.Inter:
21
+ return null;
22
+ case PropertyValueLevel.Object:
23
24
default:
25
throw new NotSupportedException($"Invalid level: {level}.");
26
}
0 commit comments