From ba9835a3c9c7783408e95056e76fb7e6944f66aa Mon Sep 17 00:00:00 2001 From: Barbara Brina <77355419+bbrina@users.noreply.github.com> Date: Tue, 23 Mar 2021 14:14:59 -0600 Subject: [PATCH] feat(core/ExecutionGroup): make component overridable (#8999) * feat(core/ExecutionGroup): make component overridable * feat(core/ExecutionGroup): Changes overridable name Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- .../src/pipeline/executions/executionGroup/ExecutionGroup.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/scripts/modules/core/src/pipeline/executions/executionGroup/ExecutionGroup.tsx b/app/scripts/modules/core/src/pipeline/executions/executionGroup/ExecutionGroup.tsx index 9068e189c3d..54d88ec70a2 100644 --- a/app/scripts/modules/core/src/pipeline/executions/executionGroup/ExecutionGroup.tsx +++ b/app/scripts/modules/core/src/pipeline/executions/executionGroup/ExecutionGroup.tsx @@ -16,6 +16,7 @@ import { IPipelineTemplateConfigV2, } from 'core/domain'; import { EntityNotifications } from 'core/entityTag/notifications/EntityNotifications'; +import { Overridable } from 'core/overrideRegistry'; import { Placement } from 'core/presentation/Placement'; import { Popover } from 'core/presentation/Popover'; import { ReactInjector } from 'core/reactShims'; @@ -55,6 +56,7 @@ export interface IExecutionGroupState { placement: Placement; } +@Overridable('PipelineExecutionGroup') export class ExecutionGroup extends React.PureComponent { public state: IExecutionGroupState; private expandUpdatedSubscription: Subscription;