@visns-studio/visns-components 4.8.4 → 4.8.5

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/package.json CHANGED
@@ -75,7 +75,7 @@
75
75
  "react-dom": "^17.0.0 || ^18.0.0"
76
76
  },
77
77
  "name": "@visns-studio/visns-components",
78
- "version": "4.8.4",
78
+ "version": "4.8.5",
79
79
  "description": "Various packages to assist in the development of our Custom Applications.",
80
80
  "main": "src/index.js",
81
81
  "files": [
@@ -236,11 +236,10 @@ function GenericDetail({
236
236
  {size === 'full' && truncatedValue
237
237
  ? parse(`<br /><p>${truncatedValue}</p>`)
238
238
  : truncatedValue}
239
- aaa
240
239
  <CopyToClipboard
241
240
  text={
242
- truncatedValue && truncatedValue !== 'null'
243
- ? truncatedValue
241
+ stringValue && stringValue !== 'null'
242
+ ? stringValue
244
243
  : ''
245
244
  }
246
245
  onCopy={() => console.info('copied')}