Fix setting hue greater than 100 in color interface

This commit is contained in:
Nicola Krumschmidt
2021-01-14 16:06:42 +01:00
parent d9dc466f9a
commit 127ba9ec01

View File

@@ -59,7 +59,7 @@
class="color-data-input"
pattern="\d*"
:min="0"
:max="i === 1 ? 360 : 100"
:max="i === 0 ? 360 : 100"
:step="1"
maxlength="3"
/>