Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
971336df
Commit
971336df
authored
Aug 16, 2021
by
davidzagi93@gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reduced terminal dragable border width and resolved search error
parent
f4159099
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
remix-ui-terminal.css
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
+1
-1
remix-ui-terminal.tsx
libs/remix-ui/terminal/src/lib/remix-ui-terminal.tsx
+2
-2
No files found.
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
View file @
971336df
...
@@ -141,7 +141,7 @@ element.style {
...
@@ -141,7 +141,7 @@ element.style {
.dragbarHorizontal
{
.dragbarHorizontal
{
position
:
absolute
;
position
:
absolute
;
top
:
0
;
top
:
0
;
height
:
0.
5
em
;
height
:
0.
2
em
;
right
:
0
;
right
:
0
;
left
:
0
;
left
:
0
;
cursor
:
row-resize
;
cursor
:
row-resize
;
...
...
libs/remix-ui/terminal/src/lib/remix-ui-terminal.tsx
View file @
971336df
...
@@ -797,7 +797,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
...
@@ -797,7 +797,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
{
/* ${self._view.inputSearch} */
}
{
/* ${self._view.inputSearch} */
}
<
input
<
input
// spellcheck = "false"
// spellcheck = "false"
onChange=
{
(
event
)
=>
setSearchInput
(
event
.
target
.
value
)
}
onChange=
{
(
event
)
=>
setSearchInput
(
event
.
target
.
value
.
trim
()
)
}
type=
"text"
type=
"text"
className=
"border filter form-control"
className=
"border filter form-control"
id=
"searchInput"
id=
"searchInput"
...
@@ -830,7 +830,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
...
@@ -830,7 +830,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
</
div
>
</
div
>
)
)
}
else
if
(
x
.
name
===
'unknownTransaction'
||
x
.
name
===
'knownTransaction'
)
{
}
else
if
(
x
.
name
===
'unknownTransaction'
||
x
.
name
===
'knownTransaction'
)
{
return
x
.
message
.
filter
(
x
=>
x
.
tx
.
hash
.
includes
(
searchInput
)
||
x
.
tx
.
from
.
includes
(
searchInput
)
||
x
.
tx
.
to
.
includes
(
searchInput
)).
map
((
trans
)
=>
{
return
x
.
message
.
filter
(
x
=>
x
.
tx
.
hash
.
includes
(
searchInput
)
||
x
.
tx
.
from
.
includes
(
searchInput
)
||
(
x
.
tx
.
to
.
includes
(
searchInput
)
)).
map
((
trans
)
=>
{
return
(<
div
className=
'px-4 block'
data
-
id=
{
`block_tx${trans.tx.hash}`
}
>
{
renderKnownTransactions
(
trans
.
tx
,
trans
.
receipt
,
index
)
}
</
div
>)
return
(<
div
className=
'px-4 block'
data
-
id=
{
`block_tx${trans.tx.hash}`
}
>
{
renderKnownTransactions
(
trans
.
tx
,
trans
.
receipt
,
index
)
}
</
div
>)
})
})
}
else
{
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment