We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80f3565 commit d31b6eeCopy full SHA for d31b6ee
src/pages/Tickets.tsx
@@ -297,7 +297,8 @@ function TicketsPage() {
297
accessor: 'message',
298
Cell: ({ value }: { value: string }) => {
299
const trimmedMessage =
300
- value.length > 100 ? `${value.substring(0, 100)}...` : value;
+ value.length > 100 ? `${value.substring(0, 80)}...` : value;
301
+
302
return trimmedMessage;
303
},
304
@@ -362,7 +363,7 @@ function TicketsPage() {
362
363
<button
364
type="button"
365
onClick={handleNewTicketClick}
- className="px-4 py-2 text-white bg-blue-500 rounded hover:bg-blue-600"
366
+ className="px-4 py-2 text-white rounded primary hover:bg-primary"
367
>
368
New Ticket
369
</button>
0 commit comments