diff --git a/POS/src/components/sale/ItemSelectionDialog.vue b/POS/src/components/sale/ItemSelectionDialog.vue index 0f474f3a..a502a96c 100644 --- a/POS/src/components/sale/ItemSelectionDialog.vue +++ b/POS/src/components/sale/ItemSelectionDialog.vue @@ -118,6 +118,7 @@
{ @@ -431,6 +433,11 @@ watch( if (isOpen && props.item) { loadOptions() } + if (isOpen && props.mode === "uom") { + nextTick(() => { + setTimeout(() => { quantityInput.value?.focus(); quantityInput.value?.select() }, 100) + }) + } }, )