From 75373682e03d98d1437e223cfe6e08c8ef2cbf69 Mon Sep 17 00:00:00 2001 From: Alexander Bazo Date: Mon, 14 Oct 2019 15:02:02 +0200 Subject: [PATCH] Fix call to color generator function --- lib/utils/Colors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/Colors.js b/lib/utils/Colors.js index be1f1bf..93e6d6b 100644 --- a/lib/utils/Colors.js +++ b/lib/utils/Colors.js @@ -17,7 +17,7 @@ function rgbToHex(r, g, b) { class Colors { - static createRandomGazeColor() { + static createRandomColor() { let r = createRandomColorChannel(), g = createRandomColorChannel(), b = createRandomColorChannel(); -- libgit2 0.26.0