Prevented date from wrapping
This commit is contained in:
@@ -148,7 +148,9 @@ export default function Tickets() {
|
|||||||
{dateSorting === "asc" && <BsArrowUp />}
|
{dateSorting === "asc" && <BsArrowUp />}
|
||||||
</button>
|
</button>
|
||||||
) as any,
|
) 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", {
|
columnHelper.accessor("subject", {
|
||||||
header: "Subject",
|
header: "Subject",
|
||||||
|
|||||||
Reference in New Issue
Block a user