Syncfusion AI Assistant

How can I help you?

Row Pinning in React Grid Component

14 Feb 202624 minutes to read

The Syncfusion® React Grid provides support for pinning specific rows at the top, ensuring important information stays visible during vertical scrolling. This feature is useful when certain rows must remain accessible for quick reference or priority viewing, regardless of user interactions.

To enable row pinning, configure the isRowPinned callback function. This function receives each row’s data and returns true or false based on the desired pinning condition. It executes only during the initial rendering of the Grid, ensuring that each row’s pinning state is determined at that stage.

Row pinning does not alter the overall content height of the Grid. The scrollable area remains fully visible, allowing smooth vertical scrolling even when multiple rows are pinned. Pinned rows appear in a fixed region above the content area, while the Grid preserves its layout and continues to allow full interaction with all other rows.

The following example pins rows with “Critical” priority and “Open” status at the top using the isRowPinned callback function.

import { GridComponent, ColumnsDirective, ColumnDirective } from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} height='315' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
        </GridComponent>
      </div>
    </div>);
}
export default App;
import { GridComponent, ColumnsDirective, ColumnDirective } from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data: Object)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} height='200' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
        </GridComponent>
      </div>
    </div>);
}
export default App;
export const data = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];
export const data:object[] = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];

Pinning rows requires a primary key column to map pinned rows to their original records. Set columns->isPrimaryKey to true for the key column.

Paging with row pinning

Row pinning keeps important rows visible at the top while navigating pages. Pinned rows are excluded from the page size calculation and remain fixed. For example, if pageSettings->pageSize is set to “10” and “2” rows are pinned, those “2” rows stay at the top while the grid displays “10” additional rows beneath them. When navigating to another page, the pinned rows remain fixed, and the next set of records is rendered below.

import { GridComponent, ColumnsDirective, ColumnDirective,  Inject, Page} from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} allowPaging={true} pageSettings={ {pageSize:15} } height='200' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Page]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
import { GridComponent, ColumnsDirective, ColumnDirective,  Inject, Page} from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data: Object)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} allowPaging={true} pageSettings={ {pageSize:15} } height='200' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Page]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
export const data = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];
export const data:object[] = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];

Pinned rows selection

Pinned rows can be selected like regular rows, with their selection state synchronized with corresponding data rows via the primary key. This ensures consistent behavior across all grid operations, such as paging, sorting, and filtering, whether selection is performed using the mouse, keyboard, or checkbox.

import { GridComponent, ColumnsDirective, ColumnDirective,  Inject, Page} from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} allowPaging={true} height='200' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective type= "checkbox" width="70" textAlign="Right" />
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Page]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
import { GridComponent, ColumnsDirective, ColumnDirective,  Inject, Page} from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data: object)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} allowPaging={true} height='200' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective type= "checkbox" width="70" textAlign="Right" />
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Page]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
export const data = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];
export const data:object[] = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];

The selectionSettings->persistSelection is automatically enabled when using the isRowPinned callback function.

Filtering and sorting with pinned rows

Row pinning is fully compatible with filtering and sorting operations. When a filter is applied, both pinned and scrollable sections display only rows that meet the filter criteria, ensuring consistent results and preventing data mismatches.

When sorting is applied, pinned rows are reordered using the same sorting rules while remaining fixed at the top. This maintains visibility and correct positioning of pinned rows even as the remaining data is reorganized.

import { GridComponent, ColumnsDirective, ColumnDirective, Page, Inject, Sort, Filter } from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    const filterSettings = {type: 'Excel'};
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} allowFiltering={true} allowSorting={true} filterSettings= allowPaging={true} height='220' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Page, Sort, Filter]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
import { GridComponent, ColumnsDirective, ColumnDirective, Inject, Page, Sort, Filter, FilterSettingsModel } from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data: object)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    const filterSettings: FilterSettingsModel = {type: 'Excel'};
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} allowFiltering={true} allowSorting={true} filterSettings= allowPaging={true} height='220' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Page, Sort, Filter]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
export const data = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];
export const data:object[] = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];

CRUD operations with row pinning

Row pinning fully supports CRUD operations with automatic synchronization between pinned rows and their original rows. Any edit, update, or deletion is immediately reflected in both views, ensuring consistent and accurate data.

import { GridComponent, ColumnsDirective, ColumnDirective, Inject, Filter, Sort, Page, Edit, Toolbar } from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    const editSettings= { allowEditing: true, allowAdding: true, allowDeleting: true };
    const toolbarOptions = ['Add', 'Edit', 'Delete', 'Update', 'Cancel'];
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} editSettings={editSettings} toolbar={toolbarOptions} height='230' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective type= "checkbox" width="70" textAlign="Right" />
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Filter, Sort, Page, Edit, Toolbar]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
import { GridComponent, ColumnsDirective, ColumnDirective, Inject, Filter, Sort, Page, Edit, Toolbar, ToolbarItems, EditSettingsModel } from '@syncfusion/ej2-react-grids';
import { data } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data: object)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    const toolbarOptions: ToolbarItems[] = ['Add', 'Edit', 'Delete', 'Update', 'Cancel'];
    const editSettings: EditSettingsModel = { allowEditing: true, allowAdding: true, allowDeleting: true };
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={data} editSettings={editSettings} toolbar={toolbarOptions} height='230' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective type= "checkbox" width="70" textAlign="Right" />
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[Filter, Sort, Page, Edit, Toolbar]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
export const data = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];
export const data:object[] = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];

Dynamic row pinning

Dynamic row pinning is available through the built-in context menu, allowing quick actions pin or unpin rows. Right-click any row to access PinRow and UnpinRow options for flexible row management.

import { GridComponent, ColumnsDirective, ColumnDirective, ContextMenu, Inject, Page } from '@syncfusion/ej2-react-grids';
import { taskData } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    const contextMenuItems= ['PinRow', 'UnpinRow'];
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={taskData} allowPaging={true} contextMenuItems={contextMenuItems} height='230' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[ContextMenu, Page]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
import { GridComponent, ColumnsDirective, ColumnDirective, ContextMenu, ContextMenuItem, Inject, Page } from '@syncfusion/ej2-react-grids';
import { taskData } from './datasource';
import * as React from 'react';

function App() {
    const isRowPinned=(data: object)=>
    {
      if (data && data.Status === 'Open' && data.Priority === 'Critical') {
        return true;
      }
      return false;
    }
    const contextMenuItems: ContextMenuItem[] = ['PinRow', 'UnpinRow'];
    return (<div className='control-pane'>
      <div className='control-section'>
        <GridComponent dataSource={taskData} allowPaging={true} contextMenuItems={contextMenuItems} height='230' isRowPinned={isRowPinned}>
          <ColumnsDirective>
            <ColumnDirective field='TaskID' headerText='Task ID' width={100} textAlign='Right' isPrimaryKey={true} />
            <ColumnDirective field='Title' headerText='Title' width={100} />
            <ColumnDirective field='Status' headerText='Status' width={100} />
            <ColumnDirective field='Assignee' headerText='Assignee' width={100} />
            <ColumnDirective field='Priority' headerText='Priority' width={100} />
          </ColumnsDirective>
          <Inject services={[ContextMenu, Page]}/>
        </GridComponent>
      </div>
    </div>);
}
export default App;
export const taskData = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];
export const taskData:object[] = [
  {
    "TaskID": "TASK-001",
    "Title": "Optimize accessControl process",
    "Project": "EmployeePortal",
    "Assignee": "Samuel Scott",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-10-23",
    "DueDate": "2026-02-14",
    "Progress": 68,
    "Tags": [
      "mobile",
      "performance",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-002",
    "Title": "Improve performance of profile",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-01-19",
    "DueDate": "2025-02-07",
    "Progress": 100,
    "Tags": [
      "feature",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-003",
    "Title": "Update workflow in shiftScheduling",
    "Project": "EmployeePortal",
    "Assignee": "Sofia Martinez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-10-16",
    "DueDate": "2025-10-12",
    "Progress": 100,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-004",
    "Title": "Improve performance of directory",
    "Project": "IdentitySync",
    "Assignee": "Noah Walker",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-09-11",
    "Progress": 100,
    "Tags": [
      "compliance",
      "ldap",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-005",
    "Title": "Improve performance of onboarding",
    "Project": "ComplianceDesk",
    "Assignee": "Maria Garcia",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-04-12",
    "DueDate": "2026-01-13",
    "Progress": 62,
    "Tags": [
      "analytics",
      "cloud",
      "role-policy",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-006",
    "Title": "Update workflow in payroll",
    "Project": "ComplianceDesk",
    "Assignee": "Noah Walker",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-10-13",
    "DueDate": "2026-01-23",
    "Progress": 17,
    "Tags": [
      "ldap",
      "notifications",
      "security"
    ],

  },
  {
    "TaskID": "TASK-007",
    "Title": "Update workflow in notifications",
    "Project": "TalentSuite",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-09-30",
    "DueDate": "2025-10-19",
    "Progress": 100,
    "Tags": [
      "analytics",
      "devops",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-008",
    "Title": "Refactor benefits module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-10",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "analytics",
      "api",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-009",
    "Title": "Improve performanceReview error handling",
    "Project": "ComplianceDesk",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-05-25",
    "DueDate": "2026-01-23",
    "Progress": 60,
    "Tags": [
      "cloud",
      "mobile",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-010",
    "Title": "Enhance learning security",
    "Project": "IdentitySync",
    "Assignee": "Amelia Harris",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-07-07",
    "DueDate": "2026-01-01",
    "Progress": 21,
    "Tags": [
      "analytics",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-011",
    "Title": "Optimize performanceReview process",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-11-29",
    "DueDate": "2025-12-04",
    "Progress": 78,
    "Tags": [
      "audit",
      "devops",
      "performance",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-012",
    "Title": "Fix issue in learning",
    "Project": "TimeTracker",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-09-08",
    "DueDate": "2025-10-04",
    "Progress": 100,
    "Tags": [
      "compliance",
      "notifications",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-013",
    "Title": "Improve performance of profile",
    "Project": "ExpenseFlow",
    "Assignee": "Alex Johnson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-07-06",
    "DueDate": "2026-01-30",
    "Progress": 29,
    "Tags": [
      "audit",
      "ldap",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-014",
    "Title": "Add new functionality to benefits",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-18",
    "DueDate": "2024-11-19",
    "Progress": 100,
    "Tags": [
      "ldap",
      "mobile",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-015",
    "Title": "Add new functionality to directory",
    "Project": "ComplianceDesk",
    "Assignee": "Emily Davis",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-09-29",
    "DueDate": "2025-12-20",
    "Progress": 65,
    "Tags": [
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-016",
    "Title": "Fix issue in survey",
    "Project": "ComplianceDesk",
    "Assignee": "David Baker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-04-22",
    "DueDate": "2025-12-09",
    "Progress": 92,
    "Tags": [
      "bugfix",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-017",
    "Title": "Update workflow in onboarding",
    "Project": "AccessManager",
    "Assignee": "Lucy Campbell",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-03-31",
    "DueDate": "2024-07-19",
    "Progress": 100,
    "Tags": [
      "api",
      "performance",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-018",
    "Title": "Update workflow in attendance",
    "Project": "AccessManager",
    "Assignee": "Liam Hall",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-21",
    "Progress": 34,
    "Tags": [
      "api",
      "performance",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-019",
    "Title": "Implement expense feature",
    "Project": "EmployeePortal",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-11-20",
    "DueDate": "2026-01-10",
    "Progress": 89,
    "Tags": [
      "bugfix",
      "compliance",
      "observability",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-020",
    "Title": "Optimize survey process",
    "Project": "TalentSuite",
    "Assignee": "Olivia Taylor",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-12-04",
    "DueDate": "2025-02-25",
    "Progress": 100,
    "Tags": [
      "api",
      "feature",
      "role-policy",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-021",
    "Title": "Fix issue in onboarding",
    "Project": "ServiceDesk",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-07-08",
    "DueDate": "2025-12-15",
    "Progress": 38,
    "Tags": [
      "api",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-022",
    "Title": "Enhance expense security",
    "Project": "ComplianceDesk",
    "Assignee": "Henry White",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-03-04",
    "DueDate": "2026-02-22",
    "Progress": 6,
    "Tags": [
      "analytics",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-023",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Grace Wright",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2025-12-03",
    "Progress": 38,
    "Tags": [
      "database",
      "feature",
      "notifications"
    ],

  },
  {
    "TaskID": "TASK-024",
    "Title": "Optimize directory process",
    "Project": "IdentitySync",
    "Assignee": "Olivia Taylor",
    "Priority": "Low",
    "Status": "Open",
    "CreatedDate": "2024-05-22",
    "DueDate": "2025-12-18",
    "Progress": 3,
    "Tags": [
      "bugfix",
      "sso",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-025",
    "Title": "Improve notifications error handling",
    "Project": "ServiceDesk",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2026-03-08",
    "Progress": 15,
    "Tags": [
      "compliance",
      "devops"
    ],

  },
  {
    "TaskID": "TASK-026",
    "Title": "Improve reporting error handling",
    "Project": "ComplianceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-12",
    "DueDate": "2026-02-23",
    "Progress": 18,
    "Tags": [
      "bugfix",
      "cloud",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-027",
    "Title": "Implement survey feature",
    "Project": "BenefitsHub",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-05-01",
    "DueDate": "2025-12-12",
    "Progress": 84,
    "Tags": [
      "documentation",
      "sso",
      "user-mgmt",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-028",
    "Title": "Improve directory error handling",
    "Project": "TalentSuite",
    "Assignee": "Sofia Martinez",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-09-16",
    "DueDate": "2025-12-13",
    "Progress": 64,
    "Tags": [
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-029",
    "Title": "Fix issue in survey",
    "Project": "ExpenseFlow",
    "Assignee": "Liam Hall",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-08-28",
    "DueDate": "2026-01-10",
    "Progress": 57,
    "Tags": [
      "automation",
      "feature",
      "security"
    ],

  },
  {
    "TaskID": "TASK-030",
    "Title": "Improve performance of profile",
    "Project": "BenefitsHub",
    "Assignee": "James Anderson",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-03-13",
    "DueDate": "2024-06-20",
    "Progress": 100,
    "Tags": [
      "analytics",
      "cloud",
      "ui",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-031",
    "Title": "Fix issue in timeOff",
    "Project": "AccessManager",
    "Assignee": "Lucas Moore",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-07-17",
    "DueDate": "2025-08-25",
    "Progress": 100,
    "Tags": [
      "analytics",
      "bugfix",
      "database",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-032",
    "Title": "Improve payroll error handling",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2024-04-13",
    "DueDate": "2026-01-13",
    "Progress": 93,
    "Tags": [
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-033",
    "Title": "Implement onboarding feature",
    "Project": "EmployeePortal",
    "Assignee": "James Anderson",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-11",
    "DueDate": "2024-08-08",
    "Progress": 100,
    "Tags": [
      "database",
      "performance",
      "security",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-034",
    "Title": "Add new functionality to payroll",
    "Project": "BenefitsHub",
    "Assignee": "Noah Walker",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-12-08",
    "Progress": 81,
    "Tags": [
      "analytics",
      "audit",
      "ldap",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-035",
    "Title": "Refactor shiftScheduling module",
    "Project": "TalentSuite",
    "Assignee": "Ella Carter",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-03-25",
    "DueDate": "2025-12-18",
    "Progress": 51,
    "Tags": [
      "api",
      "compliance",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-036",
    "Title": "Add new functionality to onboarding",
    "Project": "TalentSuite",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2024-09-20",
    "DueDate": "2026-01-20",
    "Progress": 59,
    "Tags": [
      "api",
      "database"
    ],

  },
  {
    "TaskID": "TASK-037",
    "Title": "Add validation to accessControl",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Low",
    "Status": "Closed",
    "CreatedDate": "2024-12-28",
    "DueDate": "2025-03-02",
    "Progress": 100,
    "Tags": [
      "cloud",
      "refactor",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-038",
    "Title": "Add new functionality to onboarding",
    "Project": "LearningLab",
    "Assignee": "Samuel Scott",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-06-15",
    "DueDate": "2026-01-05",
    "Progress": 85,
    "Tags": [
      "automation",
      "cloud",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-039",
    "Title": "Implement onboarding feature",
    "Project": "ServiceDesk",
    "Assignee": "Isabella Allen",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-08",
    "DueDate": "2026-02-08",
    "Progress": 19,
    "Tags": [
      "audit",
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-040",
    "Title": "Add new functionality to benefits",
    "Project": "LearningLab",
    "Assignee": "Alex Johnson",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-06-09",
    "DueDate": "2026-01-24",
    "Progress": 26,
    "Tags": [
      "ldap",
      "observability",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-041",
    "Title": "Improve shiftScheduling error handling",
    "Project": "WellnessApp",
    "Assignee": "Leah Perez",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-08-23",
    "DueDate": "2024-09-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "bugfix",
      "cloud"
    ],

  },
  {
    "TaskID": "TASK-042",
    "Title": "Refactor onboarding module",
    "Project": "LearningLab",
    "Assignee": "Nathan Mitchell",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-12",
    "DueDate": "2026-02-06",
    "Progress": 2,
    "Tags": [
      "observability",
      "sso",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-043",
    "Title": "Update workflow in accessControl",
    "Project": "TimeTracker",
    "Assignee": "Chloe Green",
    "Priority": "Critical",
    "Status": "InProgress",
    "CreatedDate": "2024-09-28",
    "DueDate": "2026-01-02",
    "Progress": 53,
    "Tags": [
      "documentation",
      "testing",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-044",
    "Title": "Add validation to payroll",
    "Project": "OnboardPro",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-02-11",
    "DueDate": "2026-01-12",
    "Progress": 73,
    "Tags": [
      "bugfix",
      "compliance"
    ],

  },
  {
    "TaskID": "TASK-045",
    "Title": "Improve performance of performanceReview",
    "Project": "ServiceDesk",
    "Assignee": "Nora Turner",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-11-24",
    "DueDate": "2025-12-22",
    "Progress": 28,
    "Tags": [
      "database",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-046",
    "Title": "Fix issue in accessControl",
    "Project": "PayrollPlus",
    "Assignee": "Chloe Green",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-19",
    "DueDate": "2025-01-10",
    "Progress": 100,
    "Tags": [
      "devops",
      "ldap",
      "notifications",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-047",
    "Title": "Add validation to reporting",
    "Project": "ComplianceDesk",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-07-03",
    "DueDate": "2024-09-03",
    "Progress": 100,
    "Tags": [
      "audit",
      "cloud",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-048",
    "Title": "Optimize learning process",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2024-06-20",
    "DueDate": "2024-10-02",
    "Progress": 100,
    "Tags": [
      "notifications",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-049",
    "Title": "Fix issue in profile",
    "Project": "PeopleOps",
    "Assignee": "Isabella Allen",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-03-13",
    "DueDate": "2026-01-14",
    "Progress": 21,
    "Tags": [
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-050",
    "Title": "Refactor profile module",
    "Project": "AccessManager",
    "Assignee": "Ethan Clark",
    "Priority": "Critical",
    "Status": "Review",
    "CreatedDate": "2025-01-23",
    "DueDate": "2025-12-11",
    "Progress": 96,
    "Tags": [
      "cloud",
      "devops",
      "feature"
    ],

  },
  {
    "TaskID": "TASK-051",
    "Title": "Fix issue in survey",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-01-05",
    "DueDate": "2025-11-30",
    "Progress": 36,
    "Tags": [
      "cloud",
      "devops",
      "observability",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-052",
    "Title": "Optimize notifications process",
    "Project": "ExpenseFlow",
    "Assignee": "David Baker",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2024-10-09",
    "DueDate": "2025-12-07",
    "Progress": 88,
    "Tags": [
      "analytics",
      "bugfix",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-053",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Ryan Nelson",
    "Priority": "High",
    "Status": "InProgress",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-11",
    "Progress": 41,
    "Tags": [
      "documentation",
      "feature",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-054",
    "Title": "Add new functionality to payroll",
    "Project": "PayrollPlus",
    "Assignee": "Ava Lewis",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2025-07-08",
    "DueDate": "2025-12-04",
    "Progress": 68,
    "Tags": [
      "refactor",
      "security",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-055",
    "Title": "Enhance directory security",
    "Project": "IdentitySync",
    "Assignee": "Michael Brown",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-03-25",
    "DueDate": "2026-01-23",
    "Progress": 20,
    "Tags": [
      "automation",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-056",
    "Title": "Enhance attendance security",
    "Project": "ServiceDesk",
    "Assignee": "Liam Hall",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-08-25",
    "DueDate": "2025-12-21",
    "Progress": 27,
    "Tags": [
      "bugfix",
      "documentation",
      "feature",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-057",
    "Title": "Optimize profile process",
    "Project": "TimeTracker",
    "Assignee": "Owen Roberts",
    "Priority": "High",
    "Status": "Closed",
    "CreatedDate": "2025-04-14",
    "DueDate": "2025-05-01",
    "Progress": 100,
    "Tags": [
      "analytics",
      "audit",
      "documentation",
      "mobile"
    ],

  },
  {
    "TaskID": "TASK-058",
    "Title": "Refactor onboarding module",
    "Project": "TalentSuite",
    "Assignee": "Zoe Adams",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-09-09",
    "DueDate": "2025-12-22",
    "Progress": 20,
    "Tags": [
      "mobile",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-059",
    "Title": "Fix issue in onboarding",
    "Project": "ExpenseFlow",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2025-07-27",
    "DueDate": "2026-01-08",
    "Progress": 52,
    "Tags": [
      "audit",
      "performance",
      "role-policy",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-060",
    "Title": "Update workflow in attendance",
    "Project": "PayrollPlus",
    "Assignee": "Liam Hall",
    "Priority": "Critical",
    "Status": "Open",
    "CreatedDate": "2025-09-09",
    "DueDate": "2026-01-07",
    "Progress": 0,
    "Tags": [
      "api",
      "bugfix",
      "role-policy",
      "security"
    ],

  },
  {
    "TaskID": "TASK-061",
    "Title": "Optimize performanceReview process",
    "Project": "TalentSuite",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2025-05-02",
    "DueDate": "2025-07-07",
    "Progress": 100,
    "Tags": [
      "automation",
      "database",
      "notifications",
      "performance"
    ],

  },
  {
    "TaskID": "TASK-062",
    "Title": "Refactor shiftScheduling module",
    "Project": "PeopleOps",
    "Assignee": "Amelia Harris",
    "Priority": "Medium",
    "Status": "Closed",
    "CreatedDate": "2024-10-15",
    "DueDate": "2024-11-04",
    "Progress": 100,
    "Tags": [
      "audit",
      "bugfix",
      "devops",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-063",
    "Title": "Improve payroll error handling",
    "Project": "OnboardPro",
    "Assignee": "Henry White",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-02-22",
    "DueDate": "2025-12-09",
    "Progress": 95,
    "Tags": [
      "compliance",
      "database",
      "refactor",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-064",
    "Title": "Optimize profile process",
    "Project": "EmployeePortal",
    "Assignee": "Daniel Miller",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-09-11",
    "DueDate": "2026-01-08",
    "Progress": 23,
    "Tags": [
      "automation",
      "ldap",
      "observability",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-065",
    "Title": "Improve performance of shiftScheduling",
    "Project": "TimeTracker",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Review",
    "CreatedDate": "2025-06-11",
    "DueDate": "2025-12-07",
    "Progress": 94,
    "Tags": [
      "analytics",
      "security",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-066",
    "Title": "Fix issue in reporting",
    "Project": "PayrollPlus",
    "Assignee": "Owen Roberts",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-05-03",
    "DueDate": "2026-01-06",
    "Progress": 30,
    "Tags": [
      "database",
      "feature",
      "ui",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-067",
    "Title": "Add new functionality to reporting",
    "Project": "WellnessApp",
    "Assignee": "Jacob King",
    "Priority": "Critical",
    "Status": "Closed",
    "CreatedDate": "2025-07-19",
    "DueDate": "2025-12-20",
    "Progress": 2,
    "Tags": [
      "mobile",
      "sso"
    ],

  },
  {
    "TaskID": "TASK-068",
    "Title": "Optimize directory process",
    "Project": "TalentSuite",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2024-06-06",
    "DueDate": "2025-12-28",
    "Progress": 10,
    "Tags": [
      "api",
      "feature",
      "role-policy"
    ],

  },
  {
    "TaskID": "TASK-069",
    "Title": "Improve expense error handling",
    "Project": "ServiceDesk",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-02-04",
    "DueDate": "2026-01-18",
    "Progress": 12,
    "Tags": [
      "audit",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-070",
    "Title": "Improve payroll error handling",
    "Project": "EmployeePortal",
    "Assignee": "Jacob King",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-11-17",
    "DueDate": "2026-02-05",
    "Progress": 3,
    "Tags": [
      "notifications",
      "observability",
      "refactor",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-071",
    "Title": "Optimize profile process",
    "Project": "AccessManager",
    "Assignee": "Maria Garcia",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2024-10-12",
    "DueDate": "2026-02-03",
    "Progress": 29,
    "Tags": [
      "devops",
      "user-mgmt"
    ],

  },
  {
    "TaskID": "TASK-072",
    "Title": "Implement reporting feature",
    "Project": "WellnessApp",
    "Assignee": "John Smith",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-10-13",
    "DueDate": "2026-01-03",
    "Progress": 9,
    "Tags": [
      "automation",
      "devops",
      "mobile",
      "observability"
    ],

  },
  {
    "TaskID": "TASK-073",
    "Title": "Enhance expense security",
    "Project": "ServiceDesk",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "Open",
    "CreatedDate": "2025-08-05",
    "DueDate": "2026-03-09",
    "Progress": 0,
    "Tags": [
      "bugfix",
      "ux"
    ],

  },
  {
    "TaskID": "TASK-074",
    "Title": "Update workflow in performanceReview",
    "Project": "BenefitsHub",
    "Assignee": "Owen Roberts",
    "Priority": "Low",
    "Status": "InProgress",
    "CreatedDate": "2024-06-25",
    "DueDate": "2025-12-12",
    "Progress": 78,
    "Tags": [
      "automation",
      "devops",
      "ldap",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-075",
    "Title": "Add new functionality to attendance",
    "Project": "LearningLab",
    "Assignee": "Benjamin Thomas",
    "Priority": "Medium",
    "Status": "InProgress",
    "CreatedDate": "2024-04-07",
    "DueDate": "2026-01-21",
    "Progress": 55,
    "Tags": [
      "bugfix",
      "cloud",
      "notifications",
      "refactor"
    ],

  },
  {
    "TaskID": "TASK-076",
    "Title": "Add new functionality to notifications",
    "Project": "IdentitySync",
    "Assignee": "Charlotte Jackson",
    "Priority": "Low",
    "Status": "Review",
    "CreatedDate": "2024-03-28",
    "DueDate": "2026-01-15",
    "Progress": 88,
    "Tags": [
      "api",
      "audit",
      "documentation",
      "ui"
    ],

  },
  {
    "TaskID": "TASK-077",
    "Title": "Fix issue in learning",
    "Project": "LearningLab",
    "Assignee": "Charlotte Jackson",
    "Priority": "High",
    "Status": "Open",
    "CreatedDate": "2025-04-01",
    "DueDate": "2026-01-10",
    "Progress": 22,
    "Tags": [
      "ldap",
      "observability",
      "sso",
      "testing"
    ],

  },
  {
    "TaskID": "TASK-078",
    "Title": "Improve benefits error handling",
    "Project": "LearningLab",
    "Assignee": "Nora Turner",
    "Priority": "High",
    "Status": "Review",
    "CreatedDate": "2025-09-22",
    "DueDate": "2026-01-13",
    "Progress": 91,
    "Tags": [
      "audit",
      "refactor",
      "ux"
    ],

  },
];

Limitations

Row pinning is incompatible with the following features:

  • Column and row spanning
  • Row template
  • Detail template
  • Row drag and drop
  • Grouping
  • Aggregate
  • Cell selection
  • Frozen rows
  • Excel and PDF export
  • Adaptive UI