-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(match2): sort links in MatchSummary (#5074)
* Add match link priority groups * Fix typo * add missing return * Use single priority list * Fix param order, do not require index * Remove unused import * fix ?? * Apply suggestions * Iterate in alphabetical order for unspecified links * Iterate over copy * Remove import * Update components/match2/commons/match_summary_base.lua * Update components/match2/commons/match_summary_base.lua Co-authored-by: hjpalpha <[email protected]> * Rename vars Co-authored-by: Rikard Blixt <[email protected]> --------- Co-authored-by: hjpalpha <[email protected]> Co-authored-by: Rikard Blixt <[email protected]>
- Loading branch information
1 parent
371aeca
commit ad318e9
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
-- @Liquipedia | ||
-- wiki=commons | ||
-- page=Module:Links/MatchPriorityGroups | ||
-- | ||
-- Please see https://github.com/Liquipedia/Lua-Modules to contribute | ||
-- | ||
|
||
return { | ||
-- common | ||
'vod', | ||
'preview', | ||
'interview', | ||
'review', | ||
'lrthread', | ||
'recap', | ||
'headtohead', | ||
|
||
-- ageofempires | ||
'mapdraft', | ||
'civdraft' | ||
} |