Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamara Charchoghlyan authored Nov 9, 2018
2 parents 55c377c + e055c53 commit be9fe85
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/views/apps/Timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import * as moment from 'moment'
import { createApolloFetch } from "apollo-fetch"
const fetch = createApolloFetch({ uri: "http://localhost:4000/graphql" });
console.clear()
export default {
name: 'TimelinePage',
components: {
Expand All @@ -55,6 +56,7 @@ export default {
return {
user: this.$store.state.user,
news: []
}
},
Expand Down Expand Up @@ -93,6 +95,8 @@ export default {
} else {
console.log(res.errors)
}
}).catch(err => {
console.log(err);
});
Expand All @@ -102,6 +106,7 @@ export default {
// methods: {
// }
}
</script>

Expand Down
1 change: 1 addition & 0 deletions frontend/src/views/pages/CreateEvent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ export default {
startTime: '',
endTime: '',
capacityType: 'FFA',
capacityNum: 1,
countryInput: '',
cityInput: '',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/views/pages/CreateSeminar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
disabled
v-model="capacityNum"
:precision="0"

:min="1"
:max="9999">
</el-input-number>
Expand Down Expand Up @@ -133,6 +134,7 @@ export default {
startTime: '',
endTime: '',
capacityType: 'FFA',
capacityNum: 1,
countryInput: '',
cityInput: '',
Expand Down

0 comments on commit be9fe85

Please sign in to comment.