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
26a3d750
Commit
26a3d750
authored
Jun 26, 2019
by
LianaHus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed test
parent
b6143abd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
TxBrowser.js
src/app/debugger/debuggerUI/TxBrowser.js
+1
-1
file-explorer.js
src/app/files/file-explorer.js
+2
-2
landing-page.js
src/app/ui/landing-page/landing-page.js
+1
-1
No files found.
src/app/debugger/debuggerUI/TxBrowser.js
View file @
26a3d750
...
...
@@ -134,7 +134,7 @@ TxBrowser.prototype.render = function () {
}
TxBrowser
.
prototype
.
txInputChanged
=
function
(
event
)
{
// todo check validation of txnumber
// todo check validation of txnumber
in the input element, use
// required
// oninvalid="setCustomValidity('Please provide a valid transaction number, must start with 0x and have length of 22')"
// pattern="^0[x,X]+[0-9a-fA-F]{22}"
...
...
src/app/files/file-explorer.js
View file @
26a3d750
...
...
@@ -180,7 +180,7 @@ function fileExplorer (localRegistry, files, menuItems) {
MENU_HANDLE
=
contextMenu
(
event
,
{
'Rename'
:
()
=>
{
if
(
self
.
files
.
readonly
)
{
return
tooltip
(
'cannot rename folder. '
+
self
.
files
.
type
+
' is a read only explorer'
)
}
var
name
=
label
.
querySelector
(
'
label
[data-path="'
+
key
+
'"]'
)
var
name
=
label
.
querySelector
(
'
span
[data-path="'
+
key
+
'"]'
)
if
(
name
)
editModeOn
(
name
)
},
'Delete'
:
()
=>
{
...
...
@@ -197,7 +197,7 @@ function fileExplorer (localRegistry, files, menuItems) {
if
(
!
self
.
files
.
readonly
)
{
actions
[
'Rename'
]
=
()
=>
{
if
(
self
.
files
.
readonly
)
{
return
tooltip
(
'cannot rename file. '
+
self
.
files
.
type
+
' is a read only explorer'
)
}
var
name
=
label
.
querySelector
(
'
label
[data-path="'
+
key
+
'"]'
)
var
name
=
label
.
querySelector
(
'
span
[data-path="'
+
key
+
'"]'
)
if
(
name
)
editModeOn
(
name
)
}
actions
[
'Delete'
]
=
()
=>
{
...
...
src/app/ui/landing-page/landing-page.js
View file @
26a3d750
...
...
@@ -47,7 +47,7 @@ let css = csjs`
margin: 0 50px 0 70px;
}
.hpSections {
min-width: 6
2
0px;
min-width: 6
4
0px;
margin: 0 60px;
}
.labelIt {
...
...
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