Skip to content

Commit 9a29b2e

Browse files
authored
Merge pull request #10831 from mayacopeland/update_rankings_page
Rearrange ranking page tabs
2 parents 70d516c + 34a6fb0 commit 9a29b2e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/helpers.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1110,11 +1110,11 @@ function nav_links()
11101110
];
11111111
$links['rankings'] = [
11121112
'rankings.type.performance' => route('rankings', ['mode' => $defaultMode, 'type' => 'performance']),
1113-
'rankings.type.charts' => route('rankings', ['mode' => $defaultMode, 'type' => 'charts']),
11141113
'rankings.type.score' => route('rankings', ['mode' => $defaultMode, 'type' => 'score']),
11151114
'rankings.type.country' => route('rankings', ['mode' => $defaultMode, 'type' => 'country']),
11161115
'rankings.type.multiplayer' => route('multiplayer.rooms.show', ['room' => 'latest']),
11171116
'rankings.type.seasons' => route('seasons.show', ['season' => 'latest']),
1117+
'rankings.type.charts' => route('rankings', ['mode' => $defaultMode, 'type' => 'charts']),
11181118
'layout.menu.rankings.kudosu' => route('rankings.kudosu'),
11191119
];
11201120
$links['community'] = [

resources/lang/en/rankings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525

2626
'type' => [
27-
'charts' => 'spotlights',
27+
'charts' => 'spotlights (old)',
2828
'country' => 'country',
2929
'kudosu' => 'kudosu',
3030
'multiplayer' => 'multiplayer',

resources/views/rankings/index.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
];
2525
2626
$links = [];
27-
foreach (['performance', 'charts', 'score', 'country', 'multiplayer', 'seasons', 'kudosu'] as $tab) {
27+
foreach (['performance', 'score', 'country', 'multiplayer', 'seasons', 'charts', 'kudosu'] as $tab) {
2828
$links[] = [
2929
'active' => $tab === $type,
3030
'title' => osu_trans("rankings.type.{$tab}"),

0 commit comments

Comments
 (0)