Skip to content

Commit

Permalink
Merge pull request #673 from subin-chella/If-Column-contains-a-null-d…
Browse files Browse the repository at this point in the history
…ata-then-act-as-if-the-colum-was-set-to-true

🐛 If Column contains a null data then act as if the colum was set trrue fixes #561
  • Loading branch information
naelob authored Aug 24, 2024
2 parents 6165507 + 68dae36 commit 17e9e32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const DynamicCatalog = ({projectId,linkedUserId, category, optionalApiUrl} : Dyn
return [{
connector_name: connector_name,
category: category,
status: String(value)
status: value === null ? "true" : String(value)
}];
}
return [];
Expand Down

0 comments on commit 17e9e32

Please sign in to comment.