Commit 986588af authored by Rob Stupay's avatar Rob Stupay Committed by yann300

txLogger button not fixed yet

parent 6a979dfc
...@@ -50,7 +50,7 @@ var css = csjs` ...@@ -50,7 +50,7 @@ var css = csjs`
display: flex; display: flex;
} }
.debug, .details { .debug, .details {
color: ${styles.terminal.link_Debug}; color: ${styles.terminal.text_Button};
min-width: 55px; min-width: 55px;
margin-left: 5px; margin-left: 5px;
cursor: pointer; cursor: pointer;
...@@ -163,6 +163,7 @@ function renderKnownTransaction (self, data) { ...@@ -163,6 +163,7 @@ function renderKnownTransaction (self, data) {
var table var table
function txDetails () { function txDetails () {
console.log('txDetails hit')
if (table && table.parentNode) { if (table && table.parentNode) {
tx.removeChild(table) tx.removeChild(table)
} else { } else {
...@@ -215,6 +216,7 @@ function renderCall (self, data) { ...@@ -215,6 +216,7 @@ function renderCall (self, data) {
var table var table
function txDetails () { function txDetails () {
console.log('txDetails hit')
if (table && table.parentNode) { if (table && table.parentNode) {
tx.removeChild(table) tx.removeChild(table)
} else { } else {
...@@ -258,6 +260,7 @@ function renderUnknownTransaction (self, data) { ...@@ -258,6 +260,7 @@ function renderUnknownTransaction (self, data) {
` `
var table var table
function txDetails () { function txDetails () {
console.log('hit 262')
if (table && table.parentNode) { if (table && table.parentNode) {
tx.removeChild(table) tx.removeChild(table)
} else { } else {
......
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