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
d2509f6e
Commit
d2509f6e
authored
Oct 26, 2020
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix tests
parent
af310de3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
generalSettings.test.ts
apps/remix-ide-e2e/src/tests/generalSettings.test.ts
+3
-3
renderer.js
apps/remix-ide/src/app/ui/renderer.js
+2
-2
No files found.
apps/remix-ide-e2e/src/tests/generalSettings.test.ts
View file @
d2509f6e
...
...
@@ -178,8 +178,8 @@ const remixIdeThemes = {
primary
:
'#2A9FD6'
,
secondary
:
'#555'
,
success
:
'#77B300'
,
info
:
'#9
933C
C'
,
warning
:
'#F
F880
0'
,
danger
:
'#C
C00
00'
info
:
'#9
3
C'
,
warning
:
'#F
8
0'
,
danger
:
'#C00'
}
}
apps/remix-ide/src/app/ui/renderer.js
View file @
d2509f6e
...
...
@@ -87,8 +87,8 @@ Renderer.prototype.error = function (message, container, opt) {
// extract line / column
let
position
=
text
.
match
(
/^
(
.*
?)
:
([
0-9
]
*
?)
:
([
0-9
]
*
?)?
/
)
opt
.
errLine
=
position
?
p
osition
[
2
]
:
-
1
opt
.
errCol
=
position
?
p
osition
[
3
]
:
-
1
opt
.
errLine
=
position
?
p
arseInt
(
position
[
2
])
-
1
:
-
1
opt
.
errCol
=
position
?
p
arseInt
(
position
[
3
])
:
-
1
// extract file
...
...
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