Commit cf854ccd authored by LianaHus's avatar LianaHus

typo

parent 105e2b15
...@@ -13,7 +13,8 @@ const profile = { ...@@ -13,7 +13,8 @@ const profile = {
name: 'hiddenPanel', name: 'hiddenPanel',
displayName: 'Hidden Panel', displayName: 'Hidden Panel',
description: '', description: '',
version: packageJson.version version: packageJson.version,
methods: {}
} }
export class HiddenPanel extends AbstractPanel { export class HiddenPanel extends AbstractPanel {
......
...@@ -20,8 +20,8 @@ const profile = { ...@@ -20,8 +20,8 @@ const profile = {
} }
export class MainPanel extends AbstractPanel { export class MainPanel extends AbstractPanel {
constructor (options) { constructor () {
super(profile, options) super(profile)
} }
render () { render () {
......
...@@ -28,7 +28,7 @@ const css = csjs` ...@@ -28,7 +28,7 @@ const css = csjs`
/** Abstract class used for hosting the view of a plugin */ /** Abstract class used for hosting the view of a plugin */
export class AbstractPanel extends HostPlugin { export class AbstractPanel extends HostPlugin {
constructor (profile, opts) { constructor (profile) {
super(profile) super(profile)
this.events = new EventEmitter() this.events = new EventEmitter()
this.contents = {} this.contents = {}
......
...@@ -48,10 +48,6 @@ const css = csjs` ...@@ -48,10 +48,6 @@ const css = csjs`
} }
` `
const options = {
default: true
}
const sidePanel = { const sidePanel = {
name: 'sidePanel', name: 'sidePanel',
displayName: 'Side Panel', displayName: 'Side Panel',
...@@ -64,7 +60,7 @@ const sidePanel = { ...@@ -64,7 +60,7 @@ const sidePanel = {
export class SidePanel extends AbstractPanel { export class SidePanel extends AbstractPanel {
constructor (appManager, verticalIcons) { constructor (appManager, verticalIcons) {
super(sidePanel, options) super(sidePanel)
this.appManager = appManager this.appManager = appManager
this.header = this.renderHeader() this.header = this.renderHeader()
this.verticalIcons = verticalIcons this.verticalIcons = verticalIcons
......
...@@ -125,7 +125,7 @@ class TxLogger { ...@@ -125,7 +125,7 @@ class TxLogger {
} }
return false return false
} }
this.eventsDecoder = globalRegistry.get('teventsDecoder').api this.eventsDecoder = globalRegistry.get('eventsDecoder').api
this.txListener = globalRegistry.get('txListener').api this.txListener = globalRegistry.get('txListener').api
this.terminal = terminal this.terminal = terminal
// dependencies // dependencies
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment