We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d6a0e5 commit 2c2a101Copy full SHA for 2c2a101
RazorUI/Input/DmnComboBox.razor.cs
@@ -59,6 +59,7 @@ public object GetPropertyValue(object obj, string propertyName)
59
}
60
61
private string GetTextValue(object obj) {
62
+ if(obj is string) return obj as string;
63
return GetPropertyValue(obj, TextFieldName).ToString();
64
65
0 commit comments