diff --git a/src/components/ui/input/input.component.tsx b/src/components/ui/input/input.component.tsx index b1c3894c1..b1f5542bd 100644 --- a/src/components/ui/input/input.component.tsx +++ b/src/components/ui/input/input.component.tsx @@ -163,10 +163,18 @@ export class Input extends React.Component implements WebEventRespon // WebEventResponderCallbacks public onMouseEnter = (): void => { + if (this.isFocused()) { + return; + } + this.props.eva.dispatch([Interaction.HOVER]); }; public onMouseLeave = (): void => { + if (this.isFocused()) { + return; + } + this.props.eva.dispatch([]); };