Project_Branch_Management : New Feature Service Project - Branch Management #519

Merged
pramod.mahajan merged 76 commits from Project_Branch_Management into main 2025-11-25 09:42:48 +00:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit 4506f740eb - Show all commits

View File

@ -130,7 +130,7 @@ const JobList = ({ isArchive }) => {
{isArchiveModalOpen && (
<ConfirmModal
isOpen={isArchiveModalOpen}
type={isArchiveAction ? "success" : "undo"}
type={isArchiveAction ? "archive" : "Un-archive"}
header={isArchiveAction ? "Archive Job" : "Restore Job"}
message={
isArchiveAction

View File

@ -72,11 +72,11 @@ const Jobs = () => {
>
{showArchive ? (
<>
<i className="bx bx-list-ul me-1 mt-1"></i> Show Active Jobs
<i className="bx bx-list-ul me-1 mt-1"></i> Show Active
</>
) : (
<>
<i className="bx bx-archive me-1 mt-1"></i> Show Archived Jobs
<i className="bx bx-archive me-1 mt-1"></i> Show Archived
</>
)}
</button>

View File

@ -19,7 +19,9 @@ const ConfirmModal = ({
case "success":
return <i className="bx bx-archive-in text-warning" style={{ fontSize: "60px" }}></i>;
case "archive":
return <i className="bx bx-error-circle text-warning" style={{ fontSize: "60px" }}></i>;
return <i className="bx bx-archive-in text-warning" style={{ fontSize: "60px" }}></i>;
case "Un-archive":
return <i className="bx bx-archive-out text-warning" style={{ fontSize: "60px" }}></i>;
case "undo":
return <i className="bx bx-undo text-info" style={{ fontSize: "50px" }}></i>;
default: