Compare commits
No commits in common. "92ac90315abe2d1bf3ee058d5b4c9c283e85341f" and "5017532439e17c338240d50bca25c63f35741419" have entirely different histories.
92ac90315a
...
5017532439
4
.replit
4
.replit
@ -19,6 +19,10 @@ externalPort = 80
|
||||
localPort = 33035
|
||||
externalPort = 3001
|
||||
|
||||
[[ports]]
|
||||
localPort = 33963
|
||||
externalPort = 6000
|
||||
|
||||
[[ports]]
|
||||
localPort = 41295
|
||||
externalPort = 5173
|
||||
|
||||
@ -144,12 +144,11 @@ export default function Sites() {
|
||||
|
||||
setIsGeocoding(true);
|
||||
try {
|
||||
const response = await apiRequest(
|
||||
const result: any = await apiRequest(
|
||||
"POST",
|
||||
"/api/geocode",
|
||||
{ address }
|
||||
);
|
||||
const result = await response.json();
|
||||
|
||||
form.setValue("latitude", result.latitude);
|
||||
form.setValue("longitude", result.longitude);
|
||||
@ -182,12 +181,11 @@ export default function Sites() {
|
||||
|
||||
setIsGeocodingEdit(true);
|
||||
try {
|
||||
const response = await apiRequest(
|
||||
const result: any = await apiRequest(
|
||||
"POST",
|
||||
"/api/geocode",
|
||||
{ address }
|
||||
);
|
||||
const result = await response.json();
|
||||
|
||||
editForm.setValue("latitude", result.latitude);
|
||||
editForm.setValue("longitude", result.longitude);
|
||||
@ -221,7 +219,7 @@ export default function Sites() {
|
||||
setEditingSite(site);
|
||||
editForm.reset({
|
||||
name: site.name,
|
||||
address: site.address || "",
|
||||
address: site.address,
|
||||
latitude: site.latitude || "",
|
||||
longitude: site.longitude || "",
|
||||
customerId: site.customerId ?? undefined,
|
||||
|
||||
BIN
database-backups/vigilanzaturni_v1.0.33_20251022_085205.sql.gz
Normal file
BIN
database-backups/vigilanzaturni_v1.0.33_20251022_085205.sql.gz
Normal file
Binary file not shown.
Binary file not shown.
10
version.json
10
version.json
@ -1,13 +1,7 @@
|
||||
{
|
||||
"version": "1.0.43",
|
||||
"lastUpdate": "2025-10-23T14:05:10.759Z",
|
||||
"version": "1.0.42",
|
||||
"lastUpdate": "2025-10-23T13:51:05.343Z",
|
||||
"changelog": [
|
||||
{
|
||||
"version": "1.0.43",
|
||||
"date": "2025-10-23",
|
||||
"type": "patch",
|
||||
"description": "Deployment automatico v1.0.43"
|
||||
},
|
||||
{
|
||||
"version": "1.0.42",
|
||||
"date": "2025-10-23",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user