diff --git a/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/app-delete-instances-routes-list-config.service.ts b/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/app-delete-instances-routes-list-config.service.ts
index 98d7533798..76ebfe3e07 100644
--- a/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/app-delete-instances-routes-list-config.service.ts
+++ b/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/app-delete-instances-routes-list-config.service.ts
@@ -23,6 +23,7 @@ import { APIResource } from '../../../../../../store/src/types/api.types';
import {
AppServiceBindingListConfigService,
} from '../../../../shared/components/list/list-types/app-sevice-bindings/app-service-binding-list-config.service';
+import { ServiceActionHelperService } from '../../../../shared/data-services/service-action-helper.service';
import { ApplicationService } from '../../application.service';
@Injectable()
@@ -49,9 +50,10 @@ export class AppDeleteServiceInstancesListConfigService extends AppServiceBindin
appService: ApplicationService,
datePipe: DatePipe,
currentUserPermissionService: CurrentUserPermissionsService,
- private paginationMonitorFactory: PaginationMonitorFactory
+ private paginationMonitorFactory: PaginationMonitorFactory,
+ serviceActionHelperService: ServiceActionHelperService
) {
- super(store, appService, datePipe, currentUserPermissionService);
+ super(store, appService, datePipe, currentUserPermissionService, serviceActionHelperService);
this.getGlobalActions = () => null;
this.getMultiActions = () => null;
diff --git a/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/delete-app-instances.component.spec.ts b/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/delete-app-instances.component.spec.ts
index 79b2d83b41..4864ddf0ae 100644
--- a/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/delete-app-instances.component.spec.ts
+++ b/src/frontend/packages/cloud-foundry/src/features/applications/application-delete/delete-app-instances/delete-app-instances.component.spec.ts
@@ -7,6 +7,7 @@ import { generateTestApplicationServiceProvider } from '../../../../../../core/t
import { generateTestEntityServiceProvider } from '../../../../../../core/test-framework/entity-service.helper';
import { generateCfBaseTestModules } from '../../../../../test-framework/cloud-foundry-endpoint-service.helper';
import { applicationEntityType } from '../../../../cf-entity-types';
+import { ServiceActionHelperService } from '../../../../shared/data-services/service-action-helper.service';
import {
ApplicationEnvVarsHelper,
} from '../../application/application-tabs-base/tabs/build-tab/application-env-vars.service';
@@ -29,7 +30,8 @@ describe('DeleteAppInstancesComponent', () => {
),
generateTestApplicationServiceProvider(cfId, appId),
ApplicationEnvVarsHelper,
- DatePipe
+ DatePipe,
+ ServiceActionHelperService
]
})
.compileComponents();
diff --git a/src/frontend/packages/cloud-foundry/src/features/applications/application/application-tabs-base/tabs/services-tab/services-tab.component.spec.ts b/src/frontend/packages/cloud-foundry/src/features/applications/application/application-tabs-base/tabs/services-tab/services-tab.component.spec.ts
index 9bf67767d6..9881fe291a 100644
--- a/src/frontend/packages/cloud-foundry/src/features/applications/application/application-tabs-base/tabs/services-tab/services-tab.component.spec.ts
+++ b/src/frontend/packages/cloud-foundry/src/features/applications/application/application-tabs-base/tabs/services-tab/services-tab.component.spec.ts
@@ -9,9 +9,8 @@ import { PaginationMonitorFactory } from '../../../../../../../../core/src/share
import {
generateTestApplicationServiceProvider,
} from '../../../../../../../../core/test-framework/application-service-helper';
-import {
- generateCfBaseTestModules,
-} from '../../../../../../../test-framework/cloud-foundry-endpoint-service.helper';
+import { generateCfBaseTestModules } from '../../../../../../../test-framework/cloud-foundry-endpoint-service.helper';
+import { ServiceActionHelperService } from '../../../../../../shared/data-services/service-action-helper.service';
import { ApplicationEnvVarsHelper } from '../build-tab/application-env-vars.service';
import { ServicesTabComponent } from './services-tab.component';
@@ -29,7 +28,8 @@ describe('ServicesTabComponent', () => {
ApplicationEnvVarsHelper,
ApplicationStateService,
PaginationMonitorFactory,
- DatePipe
+ DatePipe,
+ ServiceActionHelperService
]
})
.compileComponents();
diff --git a/src/frontend/packages/cloud-foundry/src/features/cloud-foundry/tabs/cloud-foundry-organizations/cloud-foundry-organization-summary/cloud-foundry-organization-summary.component.html b/src/frontend/packages/cloud-foundry/src/features/cloud-foundry/tabs/cloud-foundry-organizations/cloud-foundry-organization-summary/cloud-foundry-organization-summary.component.html
index d6dbedbbf5..c1db16d5cf 100644
--- a/src/frontend/packages/cloud-foundry/src/features/cloud-foundry/tabs/cloud-foundry-organizations/cloud-foundry-organization-summary/cloud-foundry-organization-summary.component.html
+++ b/src/frontend/packages/cloud-foundry/src/features/cloud-foundry/tabs/cloud-foundry-organizations/cloud-foundry-organization-summary/cloud-foundry-organization-summary.component.html
@@ -4,6 +4,11 @@
matTooltip="Edit Organization">
mode_edit
+