diff --git a/web/web/src/components/DetailsDrawer.js b/web/web/src/components/DetailsDrawer.js index c470af43cc5..858e2d5ab85 100644 --- a/web/web/src/components/DetailsDrawer.js +++ b/web/web/src/components/DetailsDrawer.js @@ -205,16 +205,19 @@ const DetailsDrawer = props => { {properties.map((item, index) => { return ( - + {item.key}} placement='bottom' > - {item.key.length > 22 ? `${item.key.substring(0, 22)}...` : item.key} + {item.key} @@ -224,7 +227,7 @@ const DetailsDrawer = props => { title={{item.value}} placement='bottom' > - {item.value.length > 22 ? `${item.value.substring(0, 22)}...` : item.value} + {item.value} )}