Skip to content

Commit 4d68eb5

Browse files
committed
Merge branch 'release/0.19.1'
2 parents 70c112c + 358e5d0 commit 4d68eb5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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+
## [0.19.1] - 2018-08-03
8+
### Fixed
9+
- discover page load delay
10+
711
## [0.19.0] - 2018-07-25
812
### Added
913
- IP anonymization to Keen

addon/components/discover-page/component.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -344,11 +344,11 @@ export default Ember.Component.extend(Analytics, hostAppName, {
344344
}),
345345

346346
init() {
347-
// TODO Sort initial results on date_modified
348347
// Runs on initial render.
349348
this._super(...arguments);
350-
351-
this.get('getTypes').perform();
349+
if (this.get('facets').find(this.isTypeFacet)) {
350+
this.get('getTypes').perform();
351+
}
352352
this.get('getCounts').perform();
353353
},
354354
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@centerforopenscience/ember-osf",
3-
"version": "0.19.0",
3+
"version": "0.19.1",
44
"description": "Reusable ember models and components for interacting with the Open Science Framework",
55
"directories": {
66
"doc": "docs",

0 commit comments

Comments
 (0)