Skip to content

Commit 2080332

Browse files
fix: prevent alpha from going to 0 on old color picker UI
1 parent 9fde549 commit 2080332

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172

173173
value: {
174174
handler(value) {
175-
if (this.isNewUIApplied && value) {
175+
if (value) {
176176
this.setPickerInputValues();
177177
}
178178
},

0 commit comments

Comments
 (0)