We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 235f039 commit 4dac681Copy full SHA for 4dac681
libs/remix-ui/solidity-compiler/src/lib/compiler-container.tsx
@@ -1027,7 +1027,11 @@ export const CompilerContainer = (props: CompilerContainerProps) => {
1027
</label>
1028
</div>
1029
<RenderIf condition={state.useFileConfiguration}>
1030
- <a data-id="view-solidity-config" className="cursor-pointer text-decoration-none ms-4" href='#' onClick={handleConfigFileClick}>
+ <a data-id="view-solidity-config" className="cursor-pointer text-decoration-none ms-4" href='#' onClick={(e) => {
1031
+ e.preventDefault()
1032
+ e.stopPropagation()
1033
+ handleConfigFileClick()
1034
+ }}>
1035
<i className="text-secondary mt-1 pe-1 far fa-edit"></i> Update config remix.config.json
1036
</a>
1037
</RenderIf>
0 commit comments