@evergis/react 2.0.42 → 2.0.46
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.
package/dist/react.esm.js
CHANGED
|
@@ -1049,7 +1049,7 @@ const getClassificationAttribute = (attributeName, attributes) => {
|
|
|
1049
1049
|
const attribute = attributes[attributeName];
|
|
1050
1050
|
const attrNamePart = {
|
|
1051
1051
|
name: attributeName,
|
|
1052
|
-
type: attribute.type || AttributeType.Unknown
|
|
1052
|
+
type: (attribute == null ? void 0 : attribute.type) || AttributeType.Unknown
|
|
1053
1053
|
};
|
|
1054
1054
|
return attribute ? _extends({}, attrNamePart, attribute) : attrNamePart;
|
|
1055
1055
|
};
|