Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 4ceacd7

Browse files
author
Dominik František Bučík
authored
Merge pull request #209 from dBucik/fix_my_services
fix: 🐛 Fix calling wrong method in "My services"
2 parents 385f9a1 + 3350dcb commit 4ceacd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/src/app/facilities/facilities-user/facilities-user.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class FacilitiesUserComponent implements OnInit, OnDestroy {
6868
this.isLoadingTable1 = false;
6969
});
7070
if (this.externalServicesEnabled) {
71-
this.externalServicesSubscription = this.facilitiesService.getAllExternalFacilities().subscribe(services => {
71+
this.externalServicesSubscription = this.facilitiesService.getMyExternalFacilities().subscribe(services => {
7272
this.externalServices = services.map(s => new ProvidedService(s));
7373
this.setExternalServicesDataSource();
7474
this.isLoadingTable2 = false;

0 commit comments

Comments
 (0)