Skip to content

Commit

Permalink
feat(core/ExecutionGroup): make component overridable (#8999)
Browse files Browse the repository at this point in the history
* feat(core/ExecutionGroup): make component overridable

* feat(core/ExecutionGroup): Changes overridable name

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
bbrina and mergify[bot] committed Mar 23, 2021
1 parent 7e0bfd2 commit ba9835a
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -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';
Expand Down Expand Up @@ -55,6 +56,7 @@ export interface IExecutionGroupState {
placement: Placement;
}

@Overridable('PipelineExecutionGroup')
export class ExecutionGroup extends React.PureComponent<IExecutionGroupProps, IExecutionGroupState> {
public state: IExecutionGroupState;
private expandUpdatedSubscription: Subscription;
Expand Down

0 comments on commit ba9835a

Please sign in to comment.