Prevented date from wrapping
This commit is contained in:
@@ -148,7 +148,9 @@ export default function Tickets() {
|
||||
{dateSorting === "asc" && <BsArrowUp />}
|
||||
</button>
|
||||
) as any,
|
||||
cell: (info) => moment(info.getValue()).format("DD/MM/YYYY - HH:mm"),
|
||||
cell: (info) => (
|
||||
<span className="whitespace-nowrap">{moment(info.getValue()).format("DD/MM/YYYY - HH:mm")}</span>
|
||||
),
|
||||
}),
|
||||
columnHelper.accessor("subject", {
|
||||
header: "Subject",
|
||||
|
||||
Reference in New Issue
Block a user