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
cf854ccd
Commit
cf854ccd
authored
Feb 12, 2020
by
LianaHus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo
parent
105e2b15
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
10 deletions
+7
-10
hidden-panel.js
src/app/components/hidden-panel.js
+2
-1
main-panel.js
src/app/components/main-panel.js
+2
-2
panel.js
src/app/components/panel.js
+1
-1
side-panel.js
src/app/components/side-panel.js
+1
-5
txLogger.js
src/app/ui/txLogger.js
+1
-1
No files found.
src/app/components/hidden-panel.js
View file @
cf854ccd
...
...
@@ -13,7 +13,8 @@ const profile = {
name
:
'hiddenPanel'
,
displayName
:
'Hidden Panel'
,
description
:
''
,
version
:
packageJson
.
version
version
:
packageJson
.
version
,
methods
:
{}
}
export
class
HiddenPanel
extends
AbstractPanel
{
...
...
src/app/components/main-panel.js
View file @
cf854ccd
...
...
@@ -20,8 +20,8 @@ const profile = {
}
export
class
MainPanel
extends
AbstractPanel
{
constructor
(
options
)
{
super
(
profile
,
options
)
constructor
()
{
super
(
profile
)
}
render
()
{
...
...
src/app/components/panel.js
View file @
cf854ccd
...
...
@@ -28,7 +28,7 @@ const css = csjs`
/** Abstract class used for hosting the view of a plugin */
export
class
AbstractPanel
extends
HostPlugin
{
constructor
(
profile
,
opts
)
{
constructor
(
profile
)
{
super
(
profile
)
this
.
events
=
new
EventEmitter
()
this
.
contents
=
{}
...
...
src/app/components/side-panel.js
View file @
cf854ccd
...
...
@@ -48,10 +48,6 @@ const css = csjs`
}
`
const
options
=
{
default
:
true
}
const
sidePanel
=
{
name
:
'sidePanel'
,
displayName
:
'Side Panel'
,
...
...
@@ -64,7 +60,7 @@ const sidePanel = {
export
class
SidePanel
extends
AbstractPanel
{
constructor
(
appManager
,
verticalIcons
)
{
super
(
sidePanel
,
options
)
super
(
sidePanel
)
this
.
appManager
=
appManager
this
.
header
=
this
.
renderHeader
()
this
.
verticalIcons
=
verticalIcons
...
...
src/app/ui/txLogger.js
View file @
cf854ccd
...
...
@@ -125,7 +125,7 @@ class TxLogger {
}
return
false
}
this
.
eventsDecoder
=
globalRegistry
.
get
(
'
t
eventsDecoder'
).
api
this
.
eventsDecoder
=
globalRegistry
.
get
(
'eventsDecoder'
).
api
this
.
txListener
=
globalRegistry
.
get
(
'txListener'
).
api
this
.
terminal
=
terminal
// dependencies
...
...
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