X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/d0611f387f0ec0163fc8f6053a7715bc3d592700..0b8032ec5be5dd474b47842b7630075c1d9413c2:/src/components/chips/chips.tsx?ds=sidebyside diff --git a/src/components/chips/chips.tsx b/src/components/chips/chips.tsx index eb68ed7a..c4724d1b 100644 --- a/src/components/chips/chips.tsx +++ b/src/components/chips/chips.tsx @@ -38,7 +38,7 @@ export const Chips = withStyles(styles)( render() { const { values, filler } = this.props; return - {values.map(this.renderChip)} + {values && values.map(this.renderChip)} {filler && {filler}} ; }