Support filtering location points by country/address/postalCode/description

This commit is contained in:
Fabio Manganiello 2025-04-05 22:04:21 +02:00
parent 36846164bd
commit ca666c9ef8
Signed by: blacklight
GPG key ID: D90FBA7F76362774
8 changed files with 559 additions and 138 deletions
frontend/src/models

View file

@ -0,0 +1,21 @@
class AutocompleteValue {
value: string;
label: string;
data?: any | null = undefined;
constructor(record: {
value: string;
label: string;
data?: any | null;
}) {
this.value = record.value;
this.label = record.label;
this.data = record.data;
}
toString(): string {
return this.label;
}
}
export default AutocompleteValue;