From: Owen Young Date: Thu, 28 Oct 2021 21:39:41 +0000 (+0800) Subject: feat: post form community use title instead of name X-Git-Url: http://these/git/?a=commitdiff_plain;h=7d7b1f2475930f768ab4106489af8f41aa5b3a64;p=lemmy-ui.git feat: post form community use title instead of name --- diff --git a/src/shared/utils.ts b/src/shared/utils.ts index 594c5bc..d1392f0 100644 --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@ -1462,7 +1462,7 @@ export const choicesConfig = { export function communitySelectName(cv: CommunityView): string { return cv.community.local - ? cv.community.name + ? cv.community.title : `${hostname(cv.community.actor_id)}/${cv.community.name}`; }