From c07559904442edd5d3cfe342ec039eeb1d42dade Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Mon, 17 Nov 2025 18:48:31 +0000 Subject: [PATCH] Update ObjectProperty component to include minWidth style for text parameters --- src/components/Dashboard/common/ObjectProperty.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Dashboard/common/ObjectProperty.jsx b/src/components/Dashboard/common/ObjectProperty.jsx index a490b80..24594fa 100644 --- a/src/components/Dashboard/common/ObjectProperty.jsx +++ b/src/components/Dashboard/common/ObjectProperty.jsx @@ -127,7 +127,7 @@ const ObjectProperty = ({ formItemName = name ? name.split('.') : undefined } - var textParams = { style: { whiteSpace: 'nowrap' } } + var textParams = { style: { whiteSpace: 'nowrap', minWidth: '0' } } if (disabled == true) { textParams = { ...textParams, delete: true, type: 'secondary' }