From cf27881948c42ab85f55c55e68a0ad32485466fd Mon Sep 17 00:00:00 2001 From: Richard Cox Date: Mon, 11 Mar 2019 17:47:45 +0000 Subject: [PATCH] Fix service broker action - Ensure that the guid property is properly set - This means error handling happens correcty --- .../packages/store/src/actions/service-broker.actions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/packages/store/src/actions/service-broker.actions.ts b/src/frontend/packages/store/src/actions/service-broker.actions.ts index b61a4e8383..bfe627b246 100644 --- a/src/frontend/packages/store/src/actions/service-broker.actions.ts +++ b/src/frontend/packages/store/src/actions/service-broker.actions.ts @@ -32,14 +32,14 @@ export class GetServiceBrokers extends CFStartAction implements PaginatedAction } export class GetServiceBroker extends CFStartAction implements IRequestAction { constructor( - public serviceBrokerGuid: string, + public guid: string, public endpointGuid: string, public includeRelations: string[] = [], public populateMissing = true ) { super(); this.options = new RequestOptions(); - this.options.url = `service_brokers/${serviceBrokerGuid}`; + this.options.url = `service_brokers/${guid}`; this.options.method = 'get'; this.options.params = new URLSearchParams(); }