Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX-1861 Temporarily hide fund mapping till the feature is complete #1863

Merged
merged 5 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,5 +229,8 @@
}
}
}
},
Onyx2406 marked this conversation as resolved.
Show resolved Hide resolved
"cli": {
"analytics": "56a913e4-c03f-46e2-b1f4-5ffb4a9d3ab0"
}
}
2 changes: 1 addition & 1 deletion src/app/organization/organization.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h4 matLine>Standing Instructions History</h4>
</mat-list-item>
</div>

<div #fundmapping *ngIf="!shouldShowFundMapping">
<div #fundmapping *ngIf="shouldShowFundMapping">
<mat-list-item [routerLink]="['fund-mapping']" *mifosxHasPermission="'READ_OFFICE'">
<mat-icon matListIcon>
<fa-icon icon="money-bill-alt" size="sm"></fa-icon>
Expand Down
2 changes: 1 addition & 1 deletion src/app/organization/organization.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { ConfigurationWizardService } from '../configuration-wizard/configuratio
})
export class OrganizationComponent implements OnInit, AfterViewInit {

shouldShowFundMapping: boolean = true;
shouldShowFundMapping: boolean = false;
/* Reference of manage offices */
@ViewChild('office') office: ElementRef<any>;
/* Template for popover on manage offices */
Expand Down
4 changes: 2 additions & 2 deletions src/environments/.env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/* tslint:disable */
export default {
'mifos_x': {
'version': '0.0.0',
Onyx2406 marked this conversation as resolved.
Show resolved Hide resolved
'hash': '9b40d307'
'version': '230920',
'hash': '4062c669'
},
'allow_switching_backend_instance': true
};
Expand Down