6897-refactorVnTableAndEntryBuys #1374

Merged
pablone merged 34 commits from 6897-refactorVnTableAndEntryBuys into dev 2025-02-12 06:49:37 +00:00
2 changed files with 4 additions and 5 deletions
Showing only changes of commit 7e993cab73 - Show all commits

View File

@ -351,12 +351,12 @@ const clickHandler = async (event) => {
const colField = clickedElement.getAttribute('data-col-field');
const column = $props.columns.find((col) => col.name === colField);
if (editingRow.value != null && editingField.value != null) {
if (editingRow.value == rowIndex && editingField.value == colField) {
if (editingRow.value !== null && editingField.value !== null) {
if (editingRow.value === rowIndex && editingField.value === colField) {
return;
} else {
destroyInput(editingRow.value, editingField.value);
}
destroyInput(editingRow.value, editingField.value);
}
if (isEditableColumn(column))
await renderInput(Number(rowIndex), colField, clickedElement);

View File

@ -23,7 +23,6 @@ const mixinRules = [requiredFieldRule, ...($attrs.rules ?? [])];
const dateFormat = 'HH:mm';
const isPopupOpen = ref();
const hover = ref();
const emit = defineEmits(['blur']);
const styleAttrs = computed(() => {
return props.isOutlined