Skip to content

Commit

Permalink
frontend fixes (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fluder-Paradyne authored Aug 18, 2023
1 parent a8c37d4 commit ef8055b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gui/pages/Content/APM/ApmDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export default function ApmDashboard() {
<div style={{display:'inline-flex'}}>
{(showToolTip && toolTipIndex === i) && <div className="tools_used_tooltip">
{run.tools_used.slice(3).map((tool,index) =>
<div className="tools_used">{tool}</div>
<div className="tools_used" key={index}>{tool}</div>
)}
</div>}
<div className="tools_used cursor_pointer" onMouseEnter={() => setToolTipState(true,i)} onMouseLeave={() => setToolTipState(false,i)}>
Expand Down Expand Up @@ -420,4 +420,4 @@ export default function ApmDashboard() {
</div>
</div>
);
}
}
1 change: 0 additions & 1 deletion gui/pages/Content/Toolkits/ToolkitWorkspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ export default function ToolkitWorkspace({env, toolkitDetails, internalId}) {
}, [internalId]);

return (<>
'
<div className="row">
<div className="col-3"></div>
<div className="col-6 col-6-scrollable">
Expand Down

0 comments on commit ef8055b

Please sign in to comment.