Skip to content

Commit

Permalink
Add case for boolean columns in example
Browse files Browse the repository at this point in the history
  • Loading branch information
romeovs committed Apr 26, 2024
1 parent 8e111ab commit d034013
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ const getColumnExample = (
return "https://www.example.com";
}

if (Lib.isBoolean(column)) {
return "true";
}

if (Lib.isID(column)) {
return "12345";
}
Expand Down

0 comments on commit d034013

Please sign in to comment.