Loading src/common/interfaces/componentsProps.ts +1 −1 Original line number Diff line number Diff line Loading @@ -45,7 +45,7 @@ export interface ITableProps { }; handlers?: { cell: [number, number]; handler?: unknown; handler?: () => void; }[]; } Loading src/components/Knob/Knob.vue +1 −1 Original line number Diff line number Diff line Loading @@ -31,7 +31,7 @@ if (props.value) { value.value = props.value; } const propValue = computed(() => props.value); watch(propValue, () => (value.value = propValue.value)); watch(propValue, () => (value.value = propValue.value ?? value.value)); watch(value, () => emit('update', value)); const isClickHold = ref<boolean>(false); Loading src/components/Rating/Rating.vue +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ if (props.value) { value.value = props.value; } const propValue = computed(() => props.value); watch(propValue, () => (value.value = propValue.value)); watch(propValue, () => (value.value = propValue.value ?? value.value)); watch(value, () => emit('update', value)); const onHoverIndex = ref(); Loading src/components/Table/Table.vue +1 −1 Original line number Diff line number Diff line Loading @@ -160,7 +160,7 @@ const updateData = (newValue: Ref<unknown>, rowIndex: number, columnIndex: numbe v-for="(item, columnIndex) of row" :key="columnIndex" @click=" handlers ? handlers?.find((i) => i.cell?.[0] === rowIndex && i.cell?.[1] === columnIndex)?.handler() : null handlers ? handlers.find((i) => i.cell?.[0] === rowIndex && i.cell?.[1] === columnIndex)?.handler?.() : null " :class="{ leftBorder: showAllLines, Loading Loading
src/common/interfaces/componentsProps.ts +1 −1 Original line number Diff line number Diff line Loading @@ -45,7 +45,7 @@ export interface ITableProps { }; handlers?: { cell: [number, number]; handler?: unknown; handler?: () => void; }[]; } Loading
src/components/Knob/Knob.vue +1 −1 Original line number Diff line number Diff line Loading @@ -31,7 +31,7 @@ if (props.value) { value.value = props.value; } const propValue = computed(() => props.value); watch(propValue, () => (value.value = propValue.value)); watch(propValue, () => (value.value = propValue.value ?? value.value)); watch(value, () => emit('update', value)); const isClickHold = ref<boolean>(false); Loading
src/components/Rating/Rating.vue +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ if (props.value) { value.value = props.value; } const propValue = computed(() => props.value); watch(propValue, () => (value.value = propValue.value)); watch(propValue, () => (value.value = propValue.value ?? value.value)); watch(value, () => emit('update', value)); const onHoverIndex = ref(); Loading
src/components/Table/Table.vue +1 −1 Original line number Diff line number Diff line Loading @@ -160,7 +160,7 @@ const updateData = (newValue: Ref<unknown>, rowIndex: number, columnIndex: numbe v-for="(item, columnIndex) of row" :key="columnIndex" @click=" handlers ? handlers?.find((i) => i.cell?.[0] === rowIndex && i.cell?.[1] === columnIndex)?.handler() : null handlers ? handlers.find((i) => i.cell?.[0] === rowIndex && i.cell?.[1] === columnIndex)?.handler?.() : null " :class="{ leftBorder: showAllLines, Loading