@visns-studio/visns-components 3.8.10 → 3.8.12

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.
@@ -943,10 +943,12 @@ function Field({
943
943
  style={{ display: 'none' }}
944
944
  />
945
945
  <span style={{ marginLeft: '10px' }}>
946
- {inputValue?.filename
946
+ {inputValue
947
947
  ? inputValue.filename
948
- : inputValue.name
949
- ? inputValue.name
948
+ ? inputValue.filename
949
+ : inputValue.name
950
+ ? inputValue.name
951
+ : ''
950
952
  : ''}
951
953
  </span>
952
954
  {inputValue &&
@@ -1050,7 +1052,7 @@ function Field({
1050
1052
  value={inputValue || ''}
1051
1053
  init={{
1052
1054
  branding: false,
1053
- height: 500,
1055
+ height: settings.height ? settings.height : 500,
1054
1056
  menubar: false,
1055
1057
  plugins: [
1056
1058
  'advlist',
package/package.json CHANGED
@@ -54,7 +54,7 @@
54
54
  "react-dom": "^17.0.1"
55
55
  },
56
56
  "name": "@visns-studio/visns-components",
57
- "version": "3.8.10",
57
+ "version": "3.8.12",
58
58
  "description": "Various packages to assist in the development of our Custom Applications.",
59
59
  "main": "index.js",
60
60
  "scripts": {