🐛 fix: Fix text truncation in TableRow component
This commit is contained in:
parent
f3c7721307
commit
986284d47d
@ -50,7 +50,7 @@ async function downloadImage(url, filename) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function TruncatedText(text) {
|
function TruncatedText(text) {
|
||||||
const truncatedText = text.length > 30 ? text.substring(0, 100) + '...' : text;
|
const truncatedText = text.length > 30 ? text.substring(0, 30) + '...' : text;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
|
Loading…
Reference in New Issue
Block a user