Move function return to right line on scan success (#521)

Issue #520
This commit is contained in:
Andrew W 2024-08-21 22:45:14 +12:00 committed by GitHub
parent 30cfcc5ffe
commit 4558fff36c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,8 +44,8 @@ class BarcodeScanStockLocationHandler extends BarcodeHandler {
if (result && OneContext.hasContext) {
OneContext().pop();
return;
}
return;
}
}