Fix analytics page in prod
This commit is contained in:
@@ -58,9 +58,5 @@ export default {
|
||||
return queryStr.slice(1)
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
@@ -12,25 +12,19 @@ import FormStats from '../../../components/open/forms/components/FormStats.vue'
|
||||
import SeoMeta from '../../../mixins/seo-meta.js'
|
||||
|
||||
export default {
|
||||
name: 'FormStats',
|
||||
components: {FormStats},
|
||||
props: {
|
||||
form: { type: Object, required: true }
|
||||
form: {type: Object, required: true},
|
||||
},
|
||||
mixins: [SeoMeta],
|
||||
|
||||
data: () => ({
|
||||
}),
|
||||
|
||||
mounted() {},
|
||||
data: () => ({}),
|
||||
|
||||
computed: {
|
||||
metaTitle() {
|
||||
return (this.form) ? 'Form Analytics - '+this.form.title : 'Form Analytics'
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
return (this.form ? ('Form Analytics - ' + this.form.title) : 'Form Analytics')
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
@@ -11,23 +11,21 @@ import SeoMeta from '../../../mixins/seo-meta.js'
|
||||
export default {
|
||||
components: {FormSubmissions},
|
||||
props: {
|
||||
form: { type: Object, required: true }
|
||||
form: {type: Object, required: true}
|
||||
},
|
||||
mixins: [SeoMeta],
|
||||
|
||||
data: () => ({
|
||||
}),
|
||||
data: () => ({}),
|
||||
|
||||
mounted() {},
|
||||
mounted() {
|
||||
},
|
||||
|
||||
computed: {
|
||||
metaTitle() {
|
||||
return (this.form) ? 'Form Submissions - '+this.form.title : 'Form Submissions'
|
||||
return (this.form) ? 'Form Submissions - ' + this.form.title : 'Form Submissions'
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
}
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user