From 7ecd5d416f8e0506339b215a26ad5fb4d8476fe2 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Sat, 13 Sep 2025 11:05:27 -0500 Subject: [PATCH] Adding .truncate to @lodash.js. --- src/app/views/Dashboard/Dashboard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/views/Dashboard/Dashboard.jsx b/src/app/views/Dashboard/Dashboard.jsx index 3b28ef7..2432153 100755 --- a/src/app/views/Dashboard/Dashboard.jsx +++ b/src/app/views/Dashboard/Dashboard.jsx @@ -49,7 +49,7 @@ const Dashboard = () => { const messageColumns = [ { accessorKey: 'sender_id', header: 'Sender ID', size: 100 }, - { accessorKey: 'content', header: 'Content', size: 200, Cell: ({ cell }) => truncateContent(cell.getValue(), 50) }, + { accessorKey: 'content', header: 'Content', size: 200, Cell: ({ cell }) => cell.getValue() }, { accessorKey: 'created_at', header: 'Sent At', size: 150, Cell: ({ cell }) => getFormattedDate(cell.getValue()) }, ]; -- 2.43.0