Skip to content

Commit

Permalink
fix(effort): fix user filter in effort report
Browse files Browse the repository at this point in the history
  • Loading branch information
pablolmedorado committed Nov 16, 2020
1 parent 6cf22fc commit 9e20bcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/common/ItemIndex.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<v-card>
<v-toolbar flat>
<v-toolbar-title class="text-h6">
<slot name="title" v-bind="{ verboseName, verboseNamePlural, filters }">
<slot name="title" v-bind="{ verboseName, verboseNamePlural, filters: { ...filters, ...systemFilters } }">
{{ verboseNamePlural }}
</slot>
</v-toolbar-title>
<v-spacer />
<slot name="toolbar" v-bind="{ selectedItems, filters }"></slot>
<slot name="toolbar" v-bind="{ selectedItems, filters: { ...filters, ...systemFilters } }"></slot>
<v-menu v-if="filterComponent" bottom left offset-y>
<template #activator="{ on: menu }">
<v-tooltip bottom>
Expand Down

0 comments on commit 9e20bcb

Please sign in to comment.