Fix typo in range/radius preventing close events from showing up
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
00fa71dc66
commit
fb7c7c3a0a
@ -388,7 +388,7 @@ import Subtitle from "../components/Utils/Subtitle.vue";
|
|||||||
variables() {
|
variables() {
|
||||||
return {
|
return {
|
||||||
location: this.loggedUser?.settings?.location?.geohash,
|
location: this.loggedUser?.settings?.location?.geohash,
|
||||||
radius: this.loggedUser?.settings?.location?.radius,
|
radius: this.loggedUser?.settings?.location?.range,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
update: (data) => data.searchEvents,
|
update: (data) => data.searchEvents,
|
||||||
@ -396,7 +396,7 @@ import Subtitle from "../components/Utils/Subtitle.vue";
|
|||||||
return (
|
return (
|
||||||
!this.currentUser?.isLoggedIn ||
|
!this.currentUser?.isLoggedIn ||
|
||||||
!this.loggedUser?.settings?.location?.geohash ||
|
!this.loggedUser?.settings?.location?.geohash ||
|
||||||
!this.loggedUser?.settings?.location?.radius
|
!this.loggedUser?.settings?.location?.range
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user