Skip to content

Commit

Permalink
Replaced spaces with tabs :)
Browse files Browse the repository at this point in the history
  • Loading branch information
skibitsky committed Sep 2, 2020
1 parent 1bb2f75 commit 3d75a9e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ fetch('https://web.timingapp.com/api/v1/projects', {
},
json: true
}).then(result => {
const data = result.data
const data = result.data
.filter(pr => !pr.is_archived)
.map(pr => {
return {
uid: pr.self,
title: pr.title,
autocomplete: pr.title,
arg: pr.title
};
});
return {
uid: pr.self,
title: pr.title,
autocomplete: pr.title,
arg: pr.title
};
});

output(inputMatches(data, 'title'));
});

0 comments on commit 3d75a9e

Please sign in to comment.