Skip to content

Commit

Permalink
Merge pull request #11 from hackforla/filter-hacknights
Browse files Browse the repository at this point in the history
Code looks good to me.  I think there's a way to preview the pull request using Netlify, but I forget how...
  • Loading branch information
matikin9 authored Nov 14, 2018
2 parents 98d11ac + 24cf9f2 commit 438da17
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions components/Calendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ export default {
)
.then(({ data }) => {
this.calendar = data.items.filter(
item =>
item.summary &&
item.summary !== 'Westside Hack Night' &&
item.summary !== 'DTLA Hack Night'
item => item.summary && item.summary.indexOf('Hack Night') < 0
);
});
},
Expand Down

0 comments on commit 438da17

Please sign in to comment.