diff --git a/web/src/views/Midjourney/component/TableRow.js b/web/src/views/Midjourney/component/TableRow.js index 31f4acb2..2521f1c3 100644 --- a/web/src/views/Midjourney/component/TableRow.js +++ b/web/src/views/Midjourney/component/TableRow.js @@ -50,7 +50,7 @@ async function downloadImage(url, filename) { } function TruncatedText(text) { - const truncatedText = text.length > 30 ? text.substring(0, 100) + '...' : text; + const truncatedText = text.length > 30 ? text.substring(0, 30) + '...' : text; return (