diff --git a/ui/src/components/table/ProviderTable.js b/ui/src/components/table/ProviderTable.js index 16c9a55..434afda 100644 --- a/ui/src/components/table/ProviderTable.js +++ b/ui/src/components/table/ProviderTable.js @@ -12,10 +12,6 @@ const emptyTable = () => { ); }; -const truncate = (str, n) => { - return str.length > n ? str.substr(0, n - 1) + '…' : str; -}; - const content = (providerData, onRemove) => { return ( @@ -23,7 +19,11 @@ const content = (providerData, onRemove) => { return ( {data.name} - {truncate(data.url, 60)} + + + Visit site + +