Skip to content

Commit

Permalink
fix: Do not show conversation location for public wire (#4428)
Browse files Browse the repository at this point in the history
  • Loading branch information
atomrc authored Sep 13, 2023
1 parent 04b8d3f commit 7815a6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Monitor coverage
if: github.event_name == 'pull_request' && matrix.DISTRIBUTION == 'DISTRIBUTION_0'
uses: slavcodev/coverage-monitor-action@1.1.0
uses: slavcodev/coverage-monitor-action@1.8.0
with:
github_token: ${{github.token}}
clover_file: 'coverage/clover.xml'
Expand Down
8 changes: 5 additions & 3 deletions src/script/page/ConversationJoin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,11 @@ export const ConversationJoin: React.FC<ConversationJoinProps> = ({location}) =>
{hasDisplayedButtons() ? (
<>
<Text block>{t('description', {ns: translationNamespaces})}</Text>
<Paragraph muted css={{marginTop: '8px'}}>
{t('conversationLocation', {domain, ns: translationNamespaces})}
</Paragraph>
{IS_SELF_HOSTED && (
<Paragraph muted css={{marginTop: '8px'}}>
{t('conversationLocation', {domain, ns: translationNamespaces})}
</Paragraph>
)}
<Paragraph muted css={{marginTop: '8px'}}>
{t('wirelessHeadline', {brandName: BRAND_NAME, domain, ns: translationNamespaces})}
</Paragraph>
Expand Down

0 comments on commit 7815a6e

Please sign in to comment.