@dartech/arsenal-ui 1.3.45 → 1.3.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/index.js +5 -3
- package/package.json +1 -1
package/index.js
CHANGED
@@ -3191,7 +3191,7 @@ const EntityPropertiesShortView = ({
|
|
3191
3191
|
const stepperData = useMemo(() => {
|
3192
3192
|
if (_properties) {
|
3193
3193
|
return _properties.map(property => {
|
3194
|
-
const propertyType = typeof property.propertyType === 'string' ? property.propertyType : property['propertyType']['value'];
|
3194
|
+
const propertyType = typeof property.propertyType === 'string' ? property.propertyType : property['propertyType'] ? property['propertyType']['value'] : '';
|
3195
3195
|
return {
|
3196
3196
|
label: jsxs(Box, Object.assign({
|
3197
3197
|
display: "flex",
|
@@ -3200,7 +3200,7 @@ const EntityPropertiesShortView = ({
|
|
3200
3200
|
children: [jsxs("b", {
|
3201
3201
|
children: [property.name, property.isRequired ? '*' : '']
|
3202
3202
|
}), jsxs("span", {
|
3203
|
-
children: [property.key, " | ", property.isMultiple ? 'multiple' : 'single', " |
|
3203
|
+
children: [property.key, " | ", property.isMultiple ? 'multiple' : 'single', " |", ' ', propertyType]
|
3204
3204
|
})]
|
3205
3205
|
})),
|
3206
3206
|
content: property.propertyType === 'ENTITY' && jsx(EntityPropertiesShortView, {
|
@@ -3310,7 +3310,9 @@ const EntityAdditionalFields = ({
|
|
3310
3310
|
children: [jsxs(Grid$1, Object.assign({
|
3311
3311
|
xs: 3,
|
3312
3312
|
style: {
|
3313
|
-
backgroundColor: '#f9f9f9'
|
3313
|
+
backgroundColor: '#f9f9f9',
|
3314
|
+
height: '100%',
|
3315
|
+
overflowY: 'auto'
|
3314
3316
|
}
|
3315
3317
|
}, {
|
3316
3318
|
children: [jsx(Stepper, Object.assign({
|