Browse Source

chore(nc-gui): lint

pull/7807/head
Ramesh Mane 4 months ago
parent
commit
d434efc9e0
  1. 8
      packages/nc-gui/components/general/BaseIconColorPicker.vue

8
packages/nc-gui/components/general/BaseIconColorPicker.vue

@ -34,14 +34,6 @@ const updateColorHue = (value?: string | number | null) => {
colorRef.value.h = !isNaN(parseInt(`${value}`)) ? +Math.min(parseInt(`${value}`), 360) : 0
}
function selectColor(value: number) {
colorRef.value.h = value
emit('colorSelected', value)
isOpen.value = false
}
const onClick = (e: Event) => {
if (readonly) return

Loading…
Cancel
Save