Commit c6e36f95 authored by Natalia Tepluhina's avatar Natalia Tepluhina

Merge branch '213194-global-glpopover-mock-misses-named-slot' into 'master'

Add all slots to GlPopover mock

Closes #213194

See merge request gitlab-org/gitlab!28788
parents f4d7a05e 51869a67
......@@ -31,6 +31,6 @@ export const GlPopover = {
},
},
render(h) {
return h('div', this.$attrs, this.$slots.default);
return h('div', this.$attrs, Object.keys(this.$slots).map(s => this.$slots[s]));
},
};
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