From 7d7b1f2475930f768ab4106489af8f41aa5b3a64 Mon Sep 17 00:00:00 2001 From: Owen Young Date: Fri, 29 Oct 2021 05:39:41 +0800 Subject: [PATCH] feat: post form community use title instead of name --- src/shared/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}`; } -- 2.44.1