Skip to content

Commit

Permalink
style(core): add running-count style to third-level nav badge (#5067)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed Mar 26, 2018
1 parent 0cd5bbc commit 854aed6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class ThirdLevelNavigation extends React.Component<IThirdLevelNavigationP
<DataSourceNotifications tags={dataSource.alerts} application={application} tabName={category.label}/>

{dataSource.badge && application.getDataSource(dataSource.badge).data.length > 0 &&
<span className="badge">{application.getDataSource(dataSource.badge).data.length}</span>}
<span className="badge badge-running-count">{application.getDataSource(dataSource.badge).data.length}</span>}

</a>
</UISref>
Expand Down

0 comments on commit 854aed6

Please sign in to comment.