Small js fixes

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-05-25 16:22:01 +02:00
parent 6353c4f372
commit 0942b518a1
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
2 changed files with 5 additions and 5 deletions

View File

@ -1047,7 +1047,7 @@
"{moderator} suspended group {profile}": "{moderator} a suspendu le groupe {profile}", "{moderator} suspended group {profile}": "{moderator} a suspendu le groupe {profile}",
"{moderator} suspended profile {profile}": "{moderator} a suspendu le profil {profile}", "{moderator} suspended profile {profile}": "{moderator} a suspendu le profil {profile}",
"{nb} km": "{nb} km", "{nb} km": "{nb} km",
"{number} members": "{number} membres", "{number} members": "Aucun⋅e membre|Un⋅e membre|{number} membres",
"{number} organized events": "Aucun événement organisé|Un événement organisé|{number} événements organisés", "{number} organized events": "Aucun événement organisé|Un événement organisé|{number} événements organisés",
"{number} participations": "Aucune participation|Une participation|{number} participations", "{number} participations": "Aucune participation|Une participation|{number} participations",
"{number} posts": "Aucun billet|Un billet|{number} billets", "{number} posts": "Aucun billet|Un billet|{number} billets",

View File

@ -21,7 +21,7 @@
name: RouteName.PROFILES, name: RouteName.PROFILES,
params: { id: group.id }, params: { id: group.id },
}" }"
>{{ group.name || group.preferredUsername }}</router-link >{{ group.name || usernameWithDomain(group) }}</router-link
> >
</li> </li>
</ul> </ul>
@ -293,9 +293,9 @@ import { ApolloCache, FetchResult, InMemoryCache } from "@apollo/client/core";
import VueRouter from "vue-router"; import VueRouter from "vue-router";
const { isNavigationFailure, NavigationFailureType } = VueRouter; const { isNavigationFailure, NavigationFailureType } = VueRouter;
const EVENTS_PER_PAGE = 3; const EVENTS_PER_PAGE = 10;
const POSTS_PER_PAGE = 1; const POSTS_PER_PAGE = 10;
const MEMBERS_PER_PAGE = 3; const MEMBERS_PER_PAGE = 10;
@Component({ @Component({
apollo: { apollo: {