Added enter event logic in sticker reprint
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 16s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 19s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 11s
Laravel Pint / pint (pull_request) Successful in 2m18s
Laravel Larastan / larastan (pull_request) Failing after 3m38s

This commit is contained in:
dhanabalan
2026-03-07 08:54:10 +05:30
parent e01dc71417
commit ec0a53e308
2 changed files with 16 additions and 4 deletions

View File

@@ -281,7 +281,7 @@ class StickerReprint extends Page implements HasForms
}
})
->extraAttributes(fn ($get) => [
'id' => 'scan_locator_no',
'id' => 'production_order',
'class' => $get('productionError') ? 'border-red-500' : '',
])
->hint(fn ($get) => $get('productionError') ? $get('productionError') : null)
@@ -421,6 +421,7 @@ class StickerReprint extends Page implements HasForms
// 'operator_id'=> $operatorName,
'recent_qr' => $this->recQr,
]);
$this->dispatch('focus-qr-input');
$this->triggerChartUpdate();
}
}