Skip to content

Commit cb6c362

Browse files
moore3071carols10cents
authored andcommitted
changed recently updated to recent updates to match recent downloads
1 parent 543583d commit cb6c362

File tree

17 files changed

+34
-34
lines changed

17 files changed

+34
-34
lines changed

app/controllers/category/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default Controller.extend(PaginationMixin, {
1919
return 'All-Time Downloads';
2020
} else if (this.sort === 'alpha') {
2121
return 'Alphabetical';
22-
} else if (this.get('sort') === 'recently-updated') {
23-
return 'Recently Updated';
22+
} else if (this.get('sort') === 'recent-updates') {
23+
return 'Recent Updates';
2424
} else {
2525
return 'Recent Downloads';
2626
}

app/controllers/crates.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default Controller.extend(PaginationMixin, {
1919
return 'All-Time Downloads';
2020
} else if (this.sort === 'recent-downloads') {
2121
return 'Recent Downloads';
22-
} else if (this.get('sort') === 'recently-updated') {
23-
return 'Recently Updated';
22+
} else if (this.get('sort') === 'recent-updates') {
23+
return 'Recent Updates';
2424
} else {
2525
return 'Alphabetical';
2626
}

app/controllers/keyword/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export default Controller.extend(PaginationMixin, {
1717
return 'All-Time Downloads';
1818
} else if (this.sort === 'alpha') {
1919
return 'Alphabetical';
20-
} else if (this.get('sort') === 'recently-updated') {
21-
return 'Recently Updated';
20+
} else if (this.get('sort') === 'recent-updates') {
21+
return 'Recent Updates';
2222
} else {
2323
return 'Recent Downloads';
2424
}

app/controllers/me/crates.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default Controller.extend(PaginationMixin, {
1919
return 'All-Time Downloads';
2020
} else if (this.sort === 'recent-downloads') {
2121
return 'Recent Downloads';
22-
} else if (this.get('sort') === 'recently-updated') {
23-
return 'Recently Updated';
22+
} else if (this.get('sort') === 'recent-updates') {
23+
return 'Recent Updates';
2424
} else {
2525
return 'Alphabetical';
2626
}

app/controllers/search.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ export default Controller.extend(PaginationMixin, {
3131
return 'All-Time Downloads';
3232
} else if (this.sort === 'recent-downloads') {
3333
return 'Recent Downloads';
34-
} else if (this.get('sort') === 'recently-updated') {
35-
return 'Recently Updated';
34+
} else if (this.get('sort') === 'recent-updates') {
35+
return 'Recent Updates';
3636
} else {
3737
return 'Relevance';
3838
}

app/controllers/team.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export default Controller.extend(PaginationMixin, {
1717
return 'All-Time Downloads';
1818
} else if (this.sort === 'recent-downloads') {
1919
return 'Recent Downloads';
20-
} else if (this.get('sort') === 'recently-updated') {
21-
return 'Recently Updated';
20+
} else if (this.get('sort') === 'recent-updates') {
21+
return 'Recent Updates';
2222
} else {
2323
return 'Alphabetical';
2424
}

app/controllers/user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export default Controller.extend(PaginationMixin, {
1818
return 'All-Time Downloads';
1919
} else if (this.sort === 'recent-downloads') {
2020
return 'Recent Downloads';
21-
} else if (this.get('sort') === 'recently-updated') {
22-
return 'Recently Updated';
21+
} else if (this.get('sort') === 'recent-updates') {
22+
return 'Recent Updates';
2323
} else {
2424
return 'Alphabetical';
2525
}

app/templates/category/index.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
{{/link-to}}
7171
</li>
7272
<li>
73-
{{#link-to (query-params sort="recently-updated")}}
74-
Recently Updated
73+
{{#link-to (query-params sort="recent-updates")}}
74+
Recent Updates
7575
{{/link-to}}
7676
</li>
7777
{{/rl-dropdown}}

app/templates/crates.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
{{/link-to}}
6262
</li>
6363
<li>
64-
{{#link-to (query-params page=1 sort="recently-updated")}}
65-
Recently Updated
64+
{{#link-to (query-params page=1 sort="recent-updates")}}
65+
Recent Updates
6666
{{/link-to}}
6767
</li>
6868
{{/rl-dropdown}}

app/templates/keyword/index.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
{{/link-to}}
4242
</li>
4343
<li>
44-
{{#link-to (query-params sort="recently-updated")}}
45-
Recently Updated
44+
{{#link-to (query-params sort="recent-updates")}}
45+
Recent Updates
4646
{{/link-to}}
4747
</li>
4848
{{/rl-dropdown}}

0 commit comments

Comments
 (0)