Skip to content

Commit

Permalink
Add case for boolean columns in example (#41889)
Browse files Browse the repository at this point in the history
  • Loading branch information
romeovs committed Apr 29, 2024
1 parent 246c8a8 commit 647f8f7
Showing 1 changed file with 4 additions and 0 deletions.
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 647f8f7

Please sign in to comment.