When a component is added to the titleProp it does not appear to the display. In order to workaround the bug the
style: { display: 'contents' } should be added to the title props.
See below:
const titleProps: TitleProps = {
address: addresses.stash,
component: (<div>something</div>),
style: { display: 'contents' }, // This line should not be needed
}
When a component is added to the titleProp it does not appear to the display. In order to workaround the bug the
style: { display: 'contents' }should be added to the title props.See below: