Commit 779ff746 authored by Paul Slaughter's avatar Paul Slaughter

Merge branch '344858-typeerror-cannot-read-properties-of-undefined-in-members-page' into 'master'

Resolve type error on members page

See merge request gitlab-org/gitlab!73687
parents 73c2c4f6 4597c630
...@@ -11,7 +11,10 @@ export default { ...@@ -11,7 +11,10 @@ export default {
components: { MembersTable, FilterSortContainer, GlAlert }, components: { MembersTable, FilterSortContainer, GlAlert },
provide() { provide() {
return { return {
namespace: this.namespace, // We can't use this.namespace due to bug in vue-apollo when
// provide is called in beforeCreate
// See https://github.com/vuejs/vue-apollo/pull/1153 for details
namespace: this.$options.propsData.namespace,
}; };
}, },
props: { props: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment