Fix report incident

This commit is contained in:
James Brooks
2018-06-29 20:07:20 +01:00
parent 26b9dbc1bc
commit 4a592c3788
4 changed files with 32 additions and 32 deletions

53
public/dist/js/all.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,9 @@
<script> <script>
const Vue = require('vue'); const Vue = require('vue');
Vue.component('report-incident', require('./ReportIncident'));
Vue.component('invite-team', require('./InviteTeam'));
module.exports = { module.exports = {
props: ['user'], props: ['user'],
mounted () { mounted () {
@@ -16,10 +19,6 @@ module.exports = {
fetchSubscriberTimeline () { fetchSubscriberTimeline () {
// //
} }
},
components: {
'report-incident': require('./ReportIncident'),
'invite-team': require('./InviteTeam'),
} }
} }
</script> </script>