Revert "Release/2026 02 27 (pull request #3070)"

This commit is contained in:
Patrick Fic
2026-03-04 16:18:44 +00:00
parent 522f2b9e26
commit c9e41ba72a
204 changed files with 5497 additions and 7715 deletions

View File

@@ -7,7 +7,7 @@ import {
PlusCircleFilled,
SyncOutlined
} from "@ant-design/icons";
import { Button, Card, Space, Switch } from "antd";
import { Button, Card, Space, Switch, Table } from "antd";
import queryString from "query-string";
import { useCallback, useEffect } from "react";
import { useTranslation } from "react-i18next";
@@ -20,7 +20,6 @@ import dayjs from "../../utils/day";
import ShareToTeamsButton from "../share-to-teams/share-to-teams.component.jsx";
import PriorityLabel from "../../utils/tasksPriorityLabel.jsx";
import { logImEXEvent } from "../../firebase/firebase.utils.js";
import ResponsiveTable from "../responsive-table/responsive-table.component";
/**
* Task List Component
@@ -231,9 +230,9 @@ function TaskListComponent({
{
title: t("tasks.fields.actions"),
key: "toggleCompleted",
width: 260,
width: "8%",
render: (text, record) => (
<Space orientation="horizontal" size="small" style={{ maxWidth: "100%", whiteSpace: "nowrap" }}>
<Space orientation="horizontal">
<ShareToTeamsButton
linkText=""
urlOverride={`${window.location.origin}/manage/tasks/alltasks?taskid=${record.id}`}
@@ -346,7 +345,7 @@ function TaskListComponent({
return (
<Card title={titleTranslation} extra={tasksExtra()}>
<ResponsiveTable
<Table
loading={loading}
pagination={{
pageSize: pageLimit,
@@ -356,8 +355,8 @@ function TaskListComponent({
showQuickJumper: true
}}
columns={columns}
mobileColumnKeys={["title", "due_date", "priority", "toggleCompleted"]}
rowKey="id"
scroll={{ x: true }}
dataSource={tasks}
onChange={handleTableChange}
expandable={{