Skip to content

Commit e605d10

Browse files
committedApr 25, 2019
Fix ansi colors
1 parent 036bf30 commit e605d10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎client-overlay.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ function problemType(type) {
7474
}
7575

7676
module.exports = function(options) {
77-
for (var color in options.overlayColors) {
77+
for (var color in options.ansiColors) {
7878
if (color in colors) {
79-
colors[color] = options.overlayColors[color];
79+
colors[color] = options.ansiColors[color];
8080
}
8181
ansiHTML.setColors(colors);
8282
}

0 commit comments

Comments
 (0)
Please sign in to comment.