Skip to content

Commit

Permalink
Add Litháen. Sort options.
Browse files Browse the repository at this point in the history
  • Loading branch information
sindrig committed Oct 9, 2024
1 parent c60d5e1 commit bbc7a89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions clock/src/club-ids.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,5 @@ export default {
"UE Santa Coloma": "149333",
Danmörk: "2020",
Wales: "137220",
"Litháen": "137583",
};
1 change: 1 addition & 0 deletions clock/src/controller/TeamSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const TeamSelector = ({ teamAttrName, match, updateMatch }) => (
<option value="">Veldu lið...</option>
{Object.keys(clubIds)
.filter((key) => filterOption(key, match[teamAttrName]))
.sort((v1, v2) => v1.localeCompare(v2))
.map((key) => (
<option value={key} key={key}>
{key}
Expand Down

0 comments on commit bbc7a89

Please sign in to comment.