Prevent undefined class from being added to Tabs (#9563)

feature/default_network_editable
David Walsh 4 years ago committed by GitHub
parent a3b434df46
commit a5ff8aff80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui/app/components/ui/tabs/tab/tab.component.js

@ -20,7 +20,7 @@ const Tab = (props) => {
className,
{
'tab--active': isActive,
[activeClassName]: isActive,
[activeClassName]: activeClassName && isActive,
},
)}
data-testid={dataTestId}

Loading…
Cancel
Save