File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/RowExpandFormatter/text Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ class TextFormatter extends React.Component {
2626
2727 render ( ) {
2828 const { containerClassName, value, column } = this . props ;
29- const classname = classnames ( 'dtable-ui cell-formatter-container row-expand-jump-link-container text-formatter' , containerClassName ) ;
30- const formattedValue = this . getFormattedValue ( value ) ;
3129 const isDisplayAsAsPhoneNumber = column ? checkIsDisplayAsPhoneNumberColumn ( column ) : false ;
30+ const classname = classnames ( 'dtable-ui cell-formatter-container text-formatter' , containerClassName , { 'row-expand-jump-link-container' : isDisplayAsAsPhoneNumber } ) ;
31+ const formattedValue = this . getFormattedValue ( value ) ;
3232 return (
3333 < div className = { classname } >
3434 < span className = "text-formatter-value row-expand-jump-link-value text-truncate" > { formattedValue } </ span >
You can’t perform that action at this time.
0 commit comments