Skip to content
Snippets Groups Projects
Unverified Commit 647f8f7f authored by Romeo Van Snick's avatar Romeo Van Snick Committed by GitHub
Browse files

Add case for boolean columns in example (#41889)

parent 246c8a83
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,10 @@ const getColumnExample = (
return "https://www.example.com";
}
if (Lib.isBoolean(column)) {
return "true";
}
if (Lib.isID(column)) {
return "12345";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment