Skip to content

Commit

Permalink
fix: small style
Browse files Browse the repository at this point in the history
Signed-off-by: Eugene Jahn <[email protected]>
  • Loading branch information
eugenejahn committed May 19, 2022
1 parent 115f1fe commit 7273654
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const NodeExecutionActions: React.FC<{
state.setSelectedExecution(execution?.id ?? null);
};

const reRunIconOnClick = (e: React.MouseEvent<HTMLElement>) => {
const rerunIconOnClick = (e: React.MouseEvent<HTMLElement>) => {
e.stopPropagation();
setShowLaunchForm(true);
};
Expand All @@ -47,7 +47,7 @@ export const NodeExecutionActions: React.FC<{
<IconButton onClick={inputsAndOutputsIconOnClick}>
<InputsAndOutputsIcon />
</IconButton>
<IconButton onClick={reRunIconOnClick}>
<IconButton onClick={rerunIconOnClick}>
<RerunIcon />
</IconButton>
</div>
Expand Down

0 comments on commit 7273654

Please sign in to comment.