Skip to content

Commit

Permalink
back button fixed on transaction general tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Dániel Gyenizse committed Nov 15, 2023
1 parent d0459a7 commit 02367d5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
3 changes: 3 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,5 +230,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</div>

<div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="2%" fxLayout.lt-md="column">
<button type="button" mat-raised-button color="primary" [routerLink]="['../']">{{ 'Back' | translate}}</button>
<button type="button" mat-raised-button color="primary" [routerLink]="['../../']">{{ 'Back' | translate}}</button>
</div>
</mat-card-content>

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',
'hash': '9b40d307'
'version': '231115',
'hash': 'd0459a7f'
},
'allow_switching_backend_instance': true
};
Expand Down
9 changes: 4 additions & 5 deletions src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ export const environment = {
version: env.mifos_x.version,
hash: env.mifos_x.hash,
// For connecting to server running elsewhere update the tenant identifier
fineractPlatformTenantId: window['env']['fineractPlatformTenantId'] || 'default',
fineractPlatformTenantIds: window['env']['fineractPlatformTenantIds'] || 'default',
fineractPlatformTenantId: window['env']['fineractPlatformTenantId'] || 'binx',
fineractPlatformTenantIds: window['env']['fineractPlatformTenantIds'] || 'binx',
// For connecting to others servers running elsewhere update the base API URL
baseApiUrls: window['env']['fineractApiUrls'] ||
'https://dev.mifos.io,https://demo.mifos.io,https://qa.mifos.io,https://staging.mifos.io,https://mobile.mifos.io,https://demo.fineract.dev,https://localhost:8443',
baseApiUrls: window['env']['fineractApiUrls'] || 'https://fineract-dev.dev.aws.bimaxi.net',
// For connecting to server running elsewhere set the base API URL
baseApiUrl: window['env']['baseApiUrl'] || 'https://demo.fineract.dev',
baseApiUrl: window['env']['baseApiUrl'] || 'https://fineract-dev.dev.aws.bimaxi.net',
allowServerSwitch: env.allow_switching_backend_instance,
apiProvider: window['env']['apiProvider'] || '/fineract-provider/api',
apiVersion: window['env']['apiVersion'] || '/v1',
Expand Down

0 comments on commit 02367d5

Please sign in to comment.