[bug] fix random accent colour being reflected in accent cta

This commit is contained in:
zombieFox 2019-05-06 19:06:34 +01:00
parent ebcdb3571c
commit b3383425e0
2 changed files with 2 additions and 1 deletions

View File

@ -59,6 +59,7 @@ var accent = (function() {
path: "theme.accent.current",
newValue: randomColor
});
helper.e(".control-theme-accent-current").value = helper.rgbToHex(randomColor);
};
};

View File

@ -1,7 +1,7 @@
var version = (function() {
// version is normally bumped when the state needs changing or any new functionality is added
var current = "2.22.0";
var current = "2.22.1";
var compare = function(a, b) {
var pa = a.split(".");