Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 46 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,52 @@
"matrix.org",
"monero.social",
"mozilla.org",
"xmr.se"
"xmr.se",
"4d2.org",
"archaeo.social",
"bark.lgbt",
"calitabby.net",
"catgirl.cloud",
"comm.cx",
"digitalprivacy.diy",
"exarius.org",
"furryrefuge.com",
"g24.at",
"gemeinsam.jetzt",
"glasgow.social",
"gnulinux.club",
"grin.hu",
"hot-chilli.im",
"imagisphe.re",
"jonasled.de",
"magdeburg.jetzt",
"nope.chat",
"oblak.be",
"pcriot.org",
"pub.solar",
"rollenspiel.chat",
"socialnetwork24.com",
"synod.im",
"tchncs.de",
"tedomum.net",
"unredacted.org",
"we2.ee",
"fachschaften.org",
"pikaviestin.fi",
"federated.nexus",
"frei.chat",
"hyteck.de",
"norge.chat",
"private.coffee",
"the-apothecary.club",
"communick.com",
"data.coop",
"fsfe.org",
"hadoly.fr",
"sans-nuage.fr",
"libreon.fr",
"transgirl.cafe",
"deuxfleurs.fr"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

servers should be sorted A-Z? @kfiven

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes

],
"allowCustomHomeservers": true,

Expand Down
9 changes: 8 additions & 1 deletion src/app/pages/auth/ServerPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,14 @@ export function ServerPicker({
<Header size="300" style={{ padding: `0 ${config.space.S200}` }}>
<Text size="L400">Homeserver List</Text>
</Header>
<div style={{ padding: config.space.S100, paddingTop: 0 }}>
<div style={{
padding: config.space.S100,
paddingTop: 0,
maxHeight: 320,
overflowY: 'auto',
WebkitOverflowScrolling: 'touch',
Comment on lines +118 to +119
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should use Scroll component from folds for scrollable container. Other "menus" can be looks for ref.

}}
>
{serverList?.map((serverName) => (
<MenuItem
key={serverName}
Expand Down