I have a component which uses:
<EuiCodeBlock
language="json"
fontSize="m"
paddingSize="m"
color="dark"
overflowHeight={300}
>
data.search(
{argsString}
);
</EuiCodeBlock>
But when argString changes (confirmed via a console.log statement), the component still shows the original string from the first render.
I have a component which uses:
But when
argStringchanges (confirmed via aconsole.logstatement), the component still shows the original string from the first render.