Commit c94dc098 authored by Kushal Pandya's avatar Kushal Pandya

Pass `hasFiltersApplied` prop on component

parent 1dff121f
......@@ -22,6 +22,10 @@
type: Object,
required: true,
},
hasFiltersApplied: {
type: Boolean,
required: true,
},
emptyStateIllustrationPath: {
type: String,
required: true,
......@@ -126,6 +130,7 @@
v-if="isEpicsListEmpty"
:timeframe-start="timeframeStart"
:timeframe-end="timeframeEnd"
:has-filters-applied="hasFiltersApplied"
:empty-state-illustration-path="emptyStateIllustrationPath"
/>
</div>
......
......@@ -20,6 +20,7 @@ const createComponent = () => {
return mountComponent(Component, {
store,
service,
hasFiltersApplied: true,
emptyStateIllustrationPath: mockSvgPath,
});
};
......
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