verte icon indicating copy to clipboard operation
verte copied to clipboard

Not change value with first click

Open FRiMN opened this issue 5 years ago • 2 comments

Describe the bug Widgets with a set black color (or without a set value) the first time you click in the color selection canvas, the value does not change.

It appears on examples page.

To Reproduce Steps to reproduce the behavior:

  1. Go to examples page in docs
  2. Click on any widget with set black color (or withour a set value)
  3. Click on color choose canvas
  4. See is value not change

Expected behavior Value is change

Desktop (please complete the following information):

  • OS: Ubuntu
  • Browsers: Firefox, Chrome
  • Version: ^0.0.12

FRiMN avatar Sep 17 '19 11:09 FRiMN

I have same problem!

hbsoftco avatar May 09 '20 18:05 hbsoftco

Same problem for me in 2021/08.

As a workaround I change the value of it when mounted

private async mounted() { const originalColor = this.colorHex; this.colorHex = '#ff00ff'; await this.$nextTick(); this.colorHex = originalColor; }

Zuwie avatar Sep 02 '21 13:09 Zuwie