Skip to content

Commit

Permalink
fixed biom-table getSampleObs
Browse files Browse the repository at this point in the history
  • Loading branch information
kwcantrell committed Oct 1, 2019
1 parent 07e967c commit 78a6222
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion empress/support_files/js/biom-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ define([], function() {
result.add(ob);
});
}
return this._obs[sId];
return Array(result);
};

/**
Expand Down
2 changes: 1 addition & 1 deletion empress/support_files/js/side-panel-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ define(['Colorer'], function(Colorer) {
*/
SidePanel.prototype._updateSample = function() {
this.empress.resetTree();

// clear legends
this.legend.clearAllLegends();

Expand Down

0 comments on commit 78a6222

Please sign in to comment.