Remove settings from swapPanel

pull/1/head
Grandschtroumpf 6 years ago
parent 30600aa4b3
commit 53b119fbc5
  1. 6
      src/app/components/swap-panel.js

@ -54,19 +54,13 @@ export class SwapPanel extends AbstractPanel {
/** The header of the swap panel */
renderHeader () {
let name = ' - '
let hasSettings = false
if (this.active) {
const { profile } = this.store.getOne(this.active)
name = profile.displayName ? profile.displayName : profile.name
hasSettings = profile.settings || false
}
return yo`
<header class="${css.swapitHeader}">
<h6 class="${css.swapitTitle}">${name}</h6>
<div class="${css.icons}">
${hasSettings
? yo`<i class="fas fa-cog"></i>`
: yo`<i></i>`}
</div>
</header>`
}

Loading…
Cancel
Save