@visns-studio/visns-components 3.8.10 → 3.8.11
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/components/crm/Field.jsx +5 -3
- package/package.json +1 -1
package/components/crm/Field.jsx
CHANGED
|
@@ -943,10 +943,12 @@ function Field({
|
|
|
943
943
|
style={{ display: 'none' }}
|
|
944
944
|
/>
|
|
945
945
|
<span style={{ marginLeft: '10px' }}>
|
|
946
|
-
{inputValue
|
|
946
|
+
{inputValue
|
|
947
947
|
? inputValue.filename
|
|
948
|
-
|
|
949
|
-
|
|
948
|
+
? inputValue.filename
|
|
949
|
+
: inputValue.name
|
|
950
|
+
? inputValue.name
|
|
951
|
+
: ''
|
|
950
952
|
: ''}
|
|
951
953
|
</span>
|
|
952
954
|
{inputValue &&
|
package/package.json
CHANGED