dashboard: move the geth version to the right, make commit optional

This commit is contained in:
Kurkó Mihály 2018-01-12 13:48:27 +02:00
parent 21cf32d6a8
commit 7ba7418658
2 changed files with 629 additions and 627 deletions

File diff suppressed because it is too large Load diff

View file

@ -58,7 +58,6 @@ const deepUpdate = (prev: Object, update: Object, updater: Object) => {
// We could return the message itself too, but it's safer not to give access to it.
const shouldUpdate = (msg: Object, updater: Object) => {
const su = {};
console.log(msg);
Object.keys(msg).forEach((key) => {
su[key] = typeof updater[key] !== 'function' ? shouldUpdate(msg[key], updater[key]) : true;
});