fix(parcel-sync): show 'jud.' prefix before county name in UAT dropdown

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
AI Assistant
2026-03-22 23:03:05 +02:00
parent 7b10f1e533
commit 86e43cecae
@@ -1753,7 +1753,7 @@ export function ParcelSyncModule() {
onMouseDown={(e) => {
e.preventDefault();
const label = item.county
? `${item.name} (${item.siruta}), ${item.county}`
? `${item.name} (${item.siruta}), jud. ${item.county}`
: `${item.name} (${item.siruta})`;
setUatQuery(label);
setSiruta(item.siruta);
@@ -1771,7 +1771,7 @@ export function ParcelSyncModule() {
<span className="text-muted-foreground">
{" "}
<span className="font-medium text-foreground/70">
{item.county}
jud. {item.county}
</span>
</span>
)}