We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a728b4 commit e46976fCopy full SHA for e46976f
1 file changed
web/client/utils/ColorUtils.js
@@ -215,8 +215,8 @@ const ColorUtils = {
215
* @return (String) rgba string
216
*/
217
colorToRgbaStr: (color = "#0000FF", alpha) => {
218
- const c = tinycolor(color);
219
- return c.setAlpha(toNumber(alpha !== undefined ? alpha : c.getAlpha())).toRgbString()
+ const c = tinycolor(color);
+ return c.setAlpha(toNumber(alpha !== undefined ? alpha : c.getAlpha())).toRgbString();
220
}
221
222
};
0 commit comments