2 Commits

Author SHA1 Message Date
db87ecb76e 0.7.1 2018-01-03 19:57:26 +00:00
afa1552ebf Fix race condition with documents filtering 2018-01-03 19:48:55 +00:00
3 changed files with 4 additions and 2 deletions

View File

@@ -26,6 +26,8 @@ export default Controller.extend({
}.property('rootListing.[]', 'model.[]'),
documents: computed('currentListing.[]', function () {
if (isEmpty(this.get('currentListing'))) { return []; }
return this.get('currentListing')
.reject(item => item.path.substr(-1) === '/');
}),

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "inspektor",
"version": "0.7.0",
"version": "0.7.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "inspektor",
"version": "0.7.0",
"version": "0.7.1",
"private": true,
"description": "Inspect the contents of your remote storage",
"license": "MIT",