Skip to content

Commit

Permalink
Merge pull request #92 from shikshalokam/4.10IssueFix
Browse files Browse the repository at this point in the history
project status fix
  • Loading branch information
priyanka-TL authored Jun 29, 2022
2 parents 198884b + a84f655 commit be945f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion generics/helpers/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,10 @@ function convertProjectStatus(status) {

function revertStatusorNot( appVersion ) {

let versions = ["4.10", "4.11", "4.12" ];

let appVer = appVersion.split('.',2).join('.');
if ( appVer == "4.10") {
if ( versions.includes(appVer)) {
return false
} else {

Expand Down

0 comments on commit be945f8

Please sign in to comment.