Skip to content

Commit 4f0382e

Browse files
committed
Merge branch 'hotfix/18.1.1'
2 parents d68e43d + 1563590 commit 4f0382e

File tree

7 files changed

+251
-135
lines changed

7 files changed

+251
-135
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [18.1.1] - 2018-11-05
8+
- Routes:
9+
- `guid-node/registrations` - fix sorting of registration schema on new registration modal
10+
- Engines:
11+
- `registries` - page resetting and scrolling fixes
12+
713
## [18.1.0] - 2018-10-30
814
### Added
915
- Components:

app/guid-node/registrations/controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default class GuidNodeRegistrations extends Controller {
4242
let schemas = yield this.store.findAll('registration-schema');
4343
schemas = schemas.toArray();
4444
schemas.sort((a: RegistrationSchema, b: RegistrationSchema) => {
45-
return a.name.length > b.name.length;
45+
return a.name.length - b.name.length;
4646
});
4747
this.set('defaultSchema', schemas.firstObject);
4848
this.set('selectedSchema', this.defaultSchema);

lib/app-components/addon/components/search-paginator/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<ul local-class="ul">
22
{{#each items as |item|}}
33
<li local-class="li">
4-
<button local-class="{{if (eq current item.text) 'active'}}"
4+
<button data-test-page="{{item.text}}" local-class="{{if (eq current item.text) 'active'}}"
55
{{action (or item.action 'setPage') item.text}}
66
disabled={{item.disabled}}
77
>

0 commit comments

Comments
 (0)