Skip to content

Commit

Permalink
event capture removed (AOT-Technologies#1706)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuhaib-aot authored Nov 13, 2023
1 parent 7a59690 commit c23ee6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forms-flow-web/src/containers/Head.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ const Head = React.memo((props) => {
<div className="main-header">
{items?.map?.((item, key) => (
<div
onClick={item.onClick ? item.onClick : ()=>{}}
onClick={item.onClick}
key={key}
className={`head-item ${item.name === page ? "head-active" : ""} ${key > 0 ? 'padding-left-60' : ''}`}
style={{ color: item.name !== page ? " #949494" : "" }}
>
<h3 onClick={item?.onClick} className="application-head">
<h3 className="application-head">
<i
className={`fa fa-${item?.icon}`}
style={{ marginTop: "5px" }}
Expand Down

0 comments on commit c23ee6b

Please sign in to comment.