Skip to content

Commit

Permalink
FWF-4210:[Feature] - Flow history button disabling on published state.
Browse files Browse the repository at this point in the history
  • Loading branch information
Josephalexantony-aot committed Jan 9, 2025
1 parent 953b6ba commit 23e7842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forms-flow-web/src/components/Form/EditForm/FlowEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ const FlowEdit = forwardRef(({ isPublished = false, CategoryType,
categoryType={CategoryType.WORKFLOW}
revertBtnAction={fetchHistoryData}
historyCount={historiesData?.totalCount || 0}
disableAllRevertButton={processData.status === "Published"}
disableAllRevertButton={processData.status === "Published" || isPublished }
/>
{showTaskVarModal && (
<TaskVariableModal
Expand Down

0 comments on commit 23e7842

Please sign in to comment.