Skip to content

Commit b4c2165

Browse files
Merge pull request #5667 from Countly/SER-1878-make-transparency-control-work-for-color-picker
[SER-1878] Fix: make transparency control work for color picker
2 parents bd0c43e + 3d41c63 commit b4c2165

File tree

1 file changed

+2
-2
lines changed
  • frontend/express/public/javascripts/countly/vue/components

1 file changed

+2
-2
lines changed

frontend/express/public/javascripts/countly/vue/components/input.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
methods: {
4545
setColor: function(color) {
46-
this.$emit("input", color.hex);
46+
this.$emit("input", color.hex8);
4747
},
4848
reset: function() {
4949
this.setColor({hex: this.resetValue});
@@ -1358,4 +1358,4 @@
13581358
</div>'
13591359
}));
13601360

1361-
}(window.countlyVue = window.countlyVue || {}));
1361+
}(window.countlyVue = window.countlyVue || {}));

0 commit comments

Comments
 (0)