Commit c94dc098 authored by Kushal Pandya's avatar Kushal Pandya

Pass `hasFiltersApplied` prop on component

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