Skip to content

Commit 6ff1974

Browse files
committed
Fixup
1 parent c8e1067 commit 6ff1974

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/src/Utils/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ public static function parseHexColor(string $hex): array
360360
return [
361361
(int)round(hexdec(substr($hex, 1, $length)) * $fact),
362362
(int)round(hexdec(substr($hex, 1 + $length, $length)) * $fact),
363-
(int)round(hexdec(substr($hex, 1 + 2 * $length, $length)) * $fact)
363+
(int)round(hexdec(substr($hex, 1 + 2 * $length, $length)) * $fact),
364364
(int)round(hexdec(substr($hex, 1 + 3 * $length, $length)) * $fact)
365365
];
366366
}

0 commit comments

Comments
 (0)