Skip to content

Commit

Permalink
Merge pull request #305 from odisha-muktasoft/MUKTA-FIXES-2
Browse files Browse the repository at this point in the history
PFM-5526 : updated the condition for + button in the measure table
  • Loading branch information
Tulika-eGov authored Mar 20, 2024
2 parents 1ba23e9 + 5682669 commit 468ddc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ const MeasureTable = (props) => {
<Button
className={"plus-button"}
onButtonClick={() => {
if(mode === "CREATEALL" && (row?.category === "SOR" && row?.description || row?.category === "NON-SOR") || mode === "CREATE"){
if(mode === "CREATEALL" && (row?.category === "SOR" && row?.description || row?.category === "NON-SOR") || true){
const measure = {
sNo: 0,
targetId: 0,
Expand Down

0 comments on commit 468ddc3

Please sign in to comment.