Skip to content

Commit

Permalink
Merge branch 'master' into bot
Browse files Browse the repository at this point in the history
  • Loading branch information
megrogan authored Jan 10, 2025
2 parents 563529b + 2e2c527 commit e6350d4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend/app/src/components/home/Home.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
} from "../../theme/themes";
import SuspendedModal from "../SuspendedModal.svelte";
import NoAccess from "./NoAccess.svelte";
import NewGroup from "./addgroup/NewGroup.svelte";
import CreateOrUpdateGroup from "./createOrUpdateGroup/CreateOrUpdateGroup.svelte";
import AccountsModal from "./profile/AccountsModal.svelte";
import { querystring } from "../../routes";
import { eventListScrollTop } from "../../stores/scrollPos";
Expand Down Expand Up @@ -1353,7 +1353,7 @@
on:close={closeModal}
on:success={accessGatesEvaluated} />
{:else if modal.kind === "new_group"}
<NewGroup
<CreateOrUpdateGroup
embeddedContent={modal.embeddedContent}
candidateGroup={modal.candidate}
on:upgrade={upgrade}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</h4>
{#if group.description.length > 0}
<div>
<Markdown text={group.description} />
<Markdown inline={false} text={group.description} />
</div>
{/if}
<div class="pop">
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/src/components/home/VisibilityControl.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
</div>
{/if}

{#if candidate.public && candidate.kind === "candidate_group_chat" && candidate.level === "channel"}
{#if candidate.public && candidate.kind === "candidate_group_chat"}
<div class="section">
<Checkbox
id="visible_to_non_members"
Expand Down

0 comments on commit e6350d4

Please sign in to comment.