pull/3130/head
Joseph Izang 2 years ago committed by Aniket
parent 873bdee6a4
commit 67243c8133
  1. 1
      libs/remix-ui/run-tab/src/lib/components/contractGUI.tsx
  2. 1
      libs/remix-ui/run-tab/src/lib/components/deployInput.tsx

@ -328,7 +328,6 @@ export function ContractGUI (props: ContractGUIProps) {
<i
className="fas fa-angle-down udapp_methCaret"
onClick={switchMethodViewOn}
title={title}
style={{
visibility: !(
props.funcABI.inputs && props.funcABI.inputs.length > 0

@ -17,7 +17,6 @@ export function DeployInput (props: DeployInputProps) {
className="form-control"
data-id={props.funcABI.type === 'fallback' || props.funcABI.type === 'receive' ? `'(${props.funcABI.type}')` : 'multiParamManagerBasicInputField'}
placeholder={props.inputs}
title={props.funcABI.type === 'fallback' || props.funcABI.type === 'receive' ? `'(${props.funcABI.type}')` : props.inputs}
onChange={props.handleBasicInput}
ref={props.basicInputRef}
style={{ visibility: !props.inputs ? 'hidden' : 'visible' }}

Loading…
Cancel
Save