We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2c097e commit fdef65cCopy full SHA for fdef65c
1 file changed
examples/browser-standalone/main.tsx
@@ -653,7 +653,7 @@ function App() {
653
>
654
<option value="">None</option>
655
{COLUMNS
656
- .filter((c) => c.type === 'SingleSelect' || c.type === 'MultiSelect' || c.type === 'Boolean')
+ .filter((c) => (['SingleSelect', 'MultiSelect', 'Boolean'] as string[]).includes(c.type as string))
657
.map((c) => (
658
<option key={c.id} value={c.id}>{c.id}</option>
659
))}
0 commit comments