lucid-extension-sdk 0.0.236 → 0.0.237
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -37,8 +37,9 @@ function semanticKindToSemanticFields(semanticField) {
|
|
|
37
37
|
return undefined;
|
|
38
38
|
case SemanticKind.Title:
|
|
39
39
|
return semanticfields_1.SemanticFields.Title;
|
|
40
|
+
// Name could have been mapped to User or Title but all uses cases outside of the unified viz API use it as Title
|
|
40
41
|
case SemanticKind.Name:
|
|
41
|
-
return semanticfields_1.SemanticFields.
|
|
42
|
+
return semanticfields_1.SemanticFields.Title;
|
|
42
43
|
case SemanticKind.Image:
|
|
43
44
|
return semanticfields_1.SemanticFields.ImageUrl;
|
|
44
45
|
case SemanticKind.Description:
|