17337: Added % sign handling in collection files
[arvados-workbench2.git] / src / components / tree / virtual-tree.tsx
index 54938969ffded1d38c47cf1172d1fc160a7f1990..4e4500b7289f5502cad1142e9506ae98a9d6a82d 100644 (file)
@@ -182,7 +182,6 @@ export const VirtualTree = withStyles(styles)(
     class Component<T> extends React.Component<TreeProps<T> & WithStyles<CssRules>, {}> {
         render(): ReactElement<any> {
             const { items, render } = this.props;
-
             return <AutoSizer>
                 {({ height, width }) => {
                     return VirtualList(height, width, items || [], render, this.props);