fix: refs #7882 Change longitude and latitude types to any in createAddress method
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Guillermo Bonet 2025-03-05 11:27:59 +01:00
parent dfe5735903
commit 5ae36641df
1 changed files with 2 additions and 2 deletions

View File

@ -54,11 +54,11 @@ module.exports = function(Self) {
}, },
{ {
arg: 'longitude', arg: 'longitude',
type: 'number' type: 'any'
}, },
{ {
arg: 'latitude', arg: 'latitude',
type: 'number' type: 'any'
}, },
{ {
arg: 'isActive', arg: 'isActive',