diff --git a/CHANGELOG.md b/CHANGELOG.md index 939425d138..2d3bca4b76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [18.1.1] - 2018-11-05 +- Routes: + - `guid-node/registrations` - fix sorting of registration schema on new registration modal +- Engines: + - `registries` - page resetting and scrolling fixes + ## [18.1.0] - 2018-10-30 ### Added - Components: diff --git a/app/guid-node/registrations/controller.ts b/app/guid-node/registrations/controller.ts index 1949800679..fd2b7cdc76 100644 --- a/app/guid-node/registrations/controller.ts +++ b/app/guid-node/registrations/controller.ts @@ -42,7 +42,7 @@ export default class GuidNodeRegistrations extends Controller { let schemas = yield this.store.findAll('registration-schema'); schemas = schemas.toArray(); schemas.sort((a: RegistrationSchema, b: RegistrationSchema) => { - return a.name.length > b.name.length; + return a.name.length - b.name.length; }); this.set('defaultSchema', schemas.firstObject); this.set('selectedSchema', this.defaultSchema); diff --git a/lib/app-components/addon/components/search-paginator/template.hbs b/lib/app-components/addon/components/search-paginator/template.hbs index b379e800d9..fc4afe28c2 100644 --- a/lib/app-components/addon/components/search-paginator/template.hbs +++ b/lib/app-components/addon/components/search-paginator/template.hbs @@ -1,7 +1,7 @@