Skip to content

Commit

Permalink
Merge "Fixed missing border colour as per bug dataarts#208" from data…
Browse files Browse the repository at this point in the history
  • Loading branch information
superkelvint committed Mar 29, 2022
1 parent 7d1f13a commit 40d1082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dat/gui/GUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ function augmentController(gui, li, controller) {
} else if (controller instanceof ColorController) {
dom.addClass(li, 'color');
controller.updateDisplay = common.compose(function(val) {
li.style.borderLeftColor = controller.__color.toString();
li.style.borderLeftColor = controller.__color.toHexString();
return val;
}, controller.updateDisplay);

Expand Down

0 comments on commit 40d1082

Please sign in to comment.