diff --git a/client/src/components/task-list/task-list.component.jsx b/client/src/components/task-list/task-list.component.jsx
index c77a6af10..60cd9dbe4 100644
--- a/client/src/components/task-list/task-list.component.jsx
+++ b/client/src/components/task-list/task-list.component.jsx
@@ -128,12 +128,12 @@ function TaskListComponent({
useEffect(() => {
// This is a hack to force the page to change if the query params change (partssublet for example)
}, [location]);
-
+
columns.push({
title: t("tasks.fields.created_at"),
dataIndex: "created_at",
key: "created_at",
- width: "8%",
+ width: "10%",
defaultSortOrder: "descend",
sorter: true,
sortOrder: sortcolumn === "created_at" && sortorder,
@@ -198,7 +198,7 @@ function TaskListComponent({
title: t("tasks.fields.bill"),
dataIndex: ["bill", "id"],
key: "bill.id",
- width: "8%",
+ width: "10%",
render: (text, record) =>
record.bill ? (
@@ -232,7 +232,7 @@ function TaskListComponent({
key: "remind_at",
sorter: true,
sortOrder: sortcolumn === "remind_at" && sortorder,
- width: "8%",
+ width: "10%",
render: (text, record) =>
},
{