mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-03 05:45:14 +00:00
Merge branch 'fix-issues' into 'master'
Fix typo in range/radius preventing close events from showing up See merge request framasoft/mobilizon!865
This commit is contained in:
commit
dd82d11fde
1 changed files with 2 additions and 2 deletions
|
@ -388,7 +388,7 @@ import Subtitle from "../components/Utils/Subtitle.vue";
|
|||
variables() {
|
||||
return {
|
||||
location: this.loggedUser?.settings?.location?.geohash,
|
||||
radius: this.loggedUser?.settings?.location?.radius,
|
||||
radius: this.loggedUser?.settings?.location?.range,
|
||||
};
|
||||
},
|
||||
update: (data) => data.searchEvents,
|
||||
|
@ -396,7 +396,7 @@ import Subtitle from "../components/Utils/Subtitle.vue";
|
|||
return (
|
||||
!this.currentUser?.isLoggedIn ||
|
||||
!this.loggedUser?.settings?.location?.geohash ||
|
||||
!this.loggedUser?.settings?.location?.radius
|
||||
!this.loggedUser?.settings?.location?.range
|
||||
);
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue