Skip to content

Commit

Permalink
Merge pull request #8 from assemblee-virtuelle/alice
Browse files Browse the repository at this point in the history
Remove dark mode
  • Loading branch information
Alice-Po authored Oct 15, 2024
2 parents a81f641 + 50c99db commit 53018b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/components/organizations/Members.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const { data: roles } = await dataProvider.getMany('Person', {
{associations?.map((association) => {
const member = members.find((m) => m.id === association['pair:membershipActor']);
const role = roles.find((r) => r.id === association['pair:membershipRole']);
if (member) {
return (
<div>
<a data-modal-target={member.id} data-modal-toggle={member.id} class="cursor-pointer">
Expand All @@ -42,8 +43,10 @@ const { data: roles } = await dataProvider.getMany('Person', {
<ActorModal actor={member} />
</div>
);
}
})}
</div>
</div>
)

}
2 changes: 1 addition & 1 deletion src/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ apps:
index: false

ui:
theme: 'system' # Values: "system" | "light" | "dark" | "light:only" | "dark:only"
theme: 'light:only' # Values: "system" | "light" | "dark" | "light:only" | "dark:only"

tokens:
default:
Expand Down
File renamed without changes.

0 comments on commit 53018b7

Please sign in to comment.