Skip to content

Commit

Permalink
add separator in org collaboration dropdown menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Schneider committed Oct 5, 2017
1 parent 5dd8786 commit 804b1c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/assets/js/charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,10 @@ function createCollaborationChart(canvas)
}
}

var menuItems = [{ value:-1, name:`Top ${quota} Connections` }].concat(
var menuItems = [
{ value:-1, name:`Top ${quota} Connections` },
{ value:-1, name:"---" },
].concat(
orgs.map(function(x, i) { return { value:i, name:x }; })
);
var select = d3.select("select")
Expand Down

0 comments on commit 804b1c7

Please sign in to comment.