src/menu/datasource/verifycard/index.jsx
@@ -101,12 +101,12 @@ render: (text) => { let title = text.match(/^\s*\/\*.+\*\//) title = title && title[0] ? title[0] : '' text = title ? text.replace(title, '') : text let _text = title ? text.replace(title, '') : text return ( <div> {title ? <span style={{color: '#a50'}}>{title}</span> : null} <Paragraph copyable ellipsis={{ rows: 4, expandable: true }}>{text}</Paragraph> <Paragraph copyable={{ text: text }} ellipsis={{ rows: 4, expandable: true }}>{_text}</Paragraph> </div> ) }