Skip to content

Commit 5d592db

Browse files
committed
Merge remote-tracking branch 'upstream/feature/new-code-editor-ux' into feature/new-code-editor-ux
2 parents 3e1c80a + 7324a07 commit 5d592db

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

libs/remix-ui/helper/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ export * from './lib/components/custom-dropdown'
66
export * from './lib/components/custom-tooltip'
77
export * from './lib/components/feedback'
88
export * from './lib/components/solScanTable'
9-
export * from './lib/solidity-scan'
9+
export * from './lib/solidity-scan'
1010
export type { CompilerReport } from './types/compilerTypes'
11-
export * from './types/solidity-scan'
11+
export * from './types/solidity-scan'

libs/remix-ui/panel/src/lib/plugins/panel.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ iframe {
9696
}
9797

9898
.terminal-wrap {
99-
min-height: 35px;
99+
min-height: 70px;
100100
height: 20%;
101101
}
102102

libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ export const TabsUI = (props: TabsUIProps) => {
312312

313313
try {
314314
const path = active().substr(active().indexOf('/') + 1, active().length)
315-
315+
316316
if (tabsState.currentExt === 'js' || tabsState.currentExt === 'ts') {
317317
const content = await props.plugin.call('fileManager', 'readFile', path)
318318
await props.plugin.call('scriptRunnerBridge', 'execute', content, path)
@@ -332,7 +332,7 @@ export const TabsUI = (props: TabsUIProps) => {
332332
setCompileState('idle')
333333
return
334334
}
335-
335+
336336
props.plugin.once(compilerName, 'compilationFinished', (fileName, source, languageVersion, data) => {
337337
const hasErrors = data.errors && data.errors.filter(e => e.severity === 'error').length > 0
338338

0 commit comments

Comments
 (0)