Merge pull request #2167 from automatisch/AUT-1152

fix: variable chip label disappearing
This commit is contained in:
Ali BARIN
2024-11-12 13:18:22 +01:00
committed by GitHub

View File

@@ -7,9 +7,9 @@ function Variable({ attributes, children, element, disabled }) {
const focused = useFocused();
const label = (
<>
{children}
<span style={{ fontWeight: 500 }}>{element.name}</span>:{' '}
<span style={{ fontWeight: 300 }}>{element.sampleValue}</span>
{children}
</>
);
return (