Skip to content

Commit

Permalink
Merge branch 'master' of github.com:epfl-dojo/dojo-app
Browse files Browse the repository at this point in the history
  • Loading branch information
ponsfrilus committed Mar 15, 2017
2 parents aa859d3 + e4b7f70 commit d0799e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
},
created () {
// Getting the list of epfl-dojo repositories
this.$http.get('https://api.github.com/orgs/epfl-dojo/repos')
this.$http.get('https://api.github.com/orgs/epfl-dojo/repos?per_page=1000')
.then((response) => {
// TODO: oops, only 30 repos are retrived.
this.dojoRepos = response.data.sort((a, b) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Archives.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h4>Archives</h4>
</div>
<div class="timeline">
<dojo-time-line-item :event='event' v-for="event in events""></dojo-time-line-item>
<dojo-time-line-item :event="event" v-for="event in events"></dojo-time-line-item>
</div>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Events.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h4>Events</h4>
</div>
<div class="timeline">
<dojo-time-line-item :event='event' v-for="event in events""></dojo-time-line-item>
<dojo-time-line-item :event="event" v-for="event in events"></dojo-time-line-item>
</div>
</div>
</template>
Expand Down

0 comments on commit d0799e2

Please sign in to comment.