Skip to content

Commit

Permalink
api integrated for bulk update and removed message for delete vo
Browse files Browse the repository at this point in the history
  • Loading branch information
AlpanaMajhi committed Dec 5, 2023
1 parent 4db3ae6 commit d46b9ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/common/TaskReopenDialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const TaskReopenDialog = ({
<DialogContent>
<DialogContentText id="alert-dialog-description">
{message}
<br/>
If you continue, corresponding Voice-Over task would be deleted.
{/* <br/> */}
{/* If you continue, corresponding Voice-Over task would be deleted. */}
{taskReopenResponse && (
<TableRow
style={{
Expand Down
4 changes: 2 additions & 2 deletions src/containers/Organization/OrgLevelTaskList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ const OrgLevelTaskList = () => {
/>
)}

{openDialogs.editTaskDialog && (
{/* {openDialogs.editTaskDialog && (
<UpdateBulkTaskDialog
open={openDialogs.editTaskDialog}
handleUserDialogClose={() => handleDialogClose("editTaskDialog")}
Expand All @@ -1037,7 +1037,7 @@ const OrgLevelTaskList = () => {
isBulk={isBulk}
projectId={currentTaskDetails?.project}
/>
)}
)} */}

{openDialogs.previewDialog && (
<PreviewDialog
Expand Down
1 change: 1 addition & 0 deletions src/containers/Organization/Project/TaskList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,7 @@ const TaskList = () => {
const handleToolbarButtonClick = (key) => {
switch (key) {
case "bulkTaskUpdate":
setCurrentTaskDetails(currentSelectedTasks);
handleDialogOpen("editTaskDialog");
setIsBulk(true);
break;
Expand Down

0 comments on commit d46b9ef

Please sign in to comment.