]> PHS Git Server - phs-admin.git/commitdiff
Adding .truncate to @lodash.js.
authorcharleswrayjr <charleswrayjr@gmail.com>
Sat, 13 Sep 2025 16:05:27 +0000 (11:05 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Sat, 13 Sep 2025 16:05:27 +0000 (11:05 -0500)
src/app/views/Dashboard/Dashboard.jsx

index 3b28ef7cb1b1291e8211ad8eabf61e9c159cadfe..2432153d6ee6706be8208fcb74fb46bea6e8b8f1 100755 (executable)
@@ -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()) },
   ];