aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Tabs/Tabs.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/Tabs/Tabs.js')
-rw-r--r--src/components/ui/Tabs/Tabs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ui/Tabs/Tabs.js b/src/components/ui/Tabs/Tabs.js
index e68dc3a1d..56c76f215 100644
--- a/src/components/ui/Tabs/Tabs.js
+++ b/src/components/ui/Tabs/Tabs.js
@@ -28,7 +28,7 @@ class Tab extends Component {
28 28
29 render() { 29 render() {
30 const { children: childElements } = this.props; 30 const { children: childElements } = this.props;
31 const children = childElements.filter(c => !!c); 31 const children = childElements.filter((c) => !!c);
32 32
33 if (children.length === 1) { 33 if (children.length === 1) {
34 return <div>{children}</div>; 34 return <div>{children}</div>;