Skip to content

Commit fc55558

Browse files
committed
chore: minor text adjustments and platform order fix
Signed-off-by: Efren Lim <[email protected]>
1 parent b3968be commit fc55558

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

frontend/app/components/modules/project/components/community/config/index.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ import { xConfig } from './x.config';
1515
import { youtubeConfig } from './youtube.config';
1616

1717
export const communityConfigs: Record<string, CommunityConfig> = {
18-
bluesky: blueskyConfig,
19-
devto: devtoConfig,
20-
github: githubConfig,
21-
hackernews: hackernewsConfig,
2218
linkedin: linkedinConfig,
23-
newsletter: newsletterConfig,
24-
podcasts: podcastConfig,
25-
reddit: redditConfig,
2619
stackoverflow: stackoverflowConfig,
20+
github: githubConfig,
21+
devto: devtoConfig,
22+
reddit: redditConfig,
23+
hackernews: hackernewsConfig,
2724
twitter: xConfig,
2825
youtube: youtubeConfig,
26+
newsletter: newsletterConfig,
27+
bluesky: blueskyConfig,
28+
podcasts: podcastConfig,
2929
};
3030

3131
export default communityConfigs;

frontend/app/components/modules/project/components/community/fragments/card-content.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ SPDX-License-Identifier: MIT
1616
<div class="flex-1 min-w-0 overflow-hidden">
1717
<p
1818
v-if="mention.title"
19-
class="text-base font-semibold leading-6 text-black mb-3 whitespace-pre-wrap"
19+
class="text-sm font-semibold leading-6 text-black mb-3 whitespace-pre-wrap"
2020
>
2121
{{ mention.title }}
2222
</p>
2323
<p
24-
class="text-base leading-6 text-black whitespace-pre-wrap xl:break-normal break-all md:block hidden"
24+
class="text-sm leading-6 text-black whitespace-pre-wrap xl:break-normal break-all md:block hidden"
2525
v-html="truncateText(sanitize(mention.body), 300)"
2626
/>
2727
<p
28-
class="text-base leading-6 text-black whitespace-pre-wrap md:hidden block"
28+
class="text-sm leading-6 text-black whitespace-pre-wrap md:hidden block"
2929
v-html="truncateText(sanitize(mention.body), 150)"
3030
/>
3131
</div>

0 commit comments

Comments
 (0)