mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
🐛 Fix ConditionLocations failing comparisions
This commit is contained in:
parent
c61f764c16
commit
a9ae5fbcee
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ export default class Coordinates {
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
toString() {
|
toString() {
|
||||||
return `${this.lat.toFixed(7)} ${this.lng.toFixed(7)}`
|
return `${this.lat} ${this.lng}`
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue