bugfix...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2018-01-21 06:07:29 +03:00
parent d7740bfd7a
commit 8db38b9e94
2 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@ function createWindow(){
show: false, show: false,
// XXX get from config... (???) // XXX get from config... (???)
// XXX for some reason this shows as black...
backgroundColor: '#333333', backgroundColor: '#333333',

View File

@ -182,7 +182,7 @@ var PeerActions = actions.Actions({
// - get proxies to specific peer... // - get proxies to specific peer...
get peeractions(){ get peeractions(){
this.cache('peeractions', function(d){ this.cache('peeractions', function(d){
return d instanceof Array ? d.clone() : this.getPeerActions() }) }, return d instanceof Array ? d.slice() : this.getPeerActions() }) },
getPeerActions: ['- System/Peer/', getPeerActions: ['- System/Peer/',
function(id){ function(id){