Skip to content

Commit

Permalink
🐛 If Column contains a null data then act as if the colum was set to …
Browse files Browse the repository at this point in the history
…true #561
  • Loading branch information
subin-chella committed Aug 22, 2024
1 parent 66be9ac commit 68dae36
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 68dae36

Please sign in to comment.