Skip to content

Commit

Permalink
ACQUI-121: Funds homepage filters need to interact
Browse files Browse the repository at this point in the history
  • Loading branch information
mblenk committed Jul 16, 2024
1 parent 337309c commit ea8a60e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/FundManagement/FundManagementHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
label="code"
apiClient="acquisition"
:filters="filterLimitations"
:disabled="filters.ledger_id"
/>
</div>
<div class="filter-grid-cell">
Expand Down Expand Up @@ -253,7 +254,7 @@ export default {
computed: {
filterLimitations() {
const filterLimitations = {}
Object.keys(this.filters).forEach(key => {
Object.keys(this.filters).filter(key => !['fund_type', 'fund_group'].includes(key)).forEach(key => {
if(this.filters[key]) {
filterLimitations[key] = this.filters[key]
}
Expand Down

0 comments on commit ea8a60e

Please sign in to comment.