Skip to content

Commit

Permalink
Initial commit on decoupling tabs in the experiment page
Browse files Browse the repository at this point in the history
  • Loading branch information
upendrakumbham committed Dec 12, 2023
1 parent 878e0b8 commit f0677d3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ const TopRibbon = ({tabs, routeProps}) =>
{
tabs.map((tab) =>
<li title={tab.name} key={tab.type} className={`tabs-title`}>
{
tab.type == 'results' && Array.isArray(tab.props.ks) ?
console.log("result*****", tab.props.ks): console.log("Boolean status", typeof tab.props.ks)

}
<NavLink to={{pathname:`/${tab.type}`, search: routeProps.location.search, hash: routeProps.location.hash}}
activeClassName={`active`}>
{tab.name}
Expand Down

0 comments on commit f0677d3

Please sign in to comment.