@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
18 lines (14 loc) • 627 B
text/typescript
import { module } from 'angular';
import { react2angular } from 'react2angular';
import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary';
import { DeploymentStrategySelector } from './DeploymentStrategySelector';
export const DEPLOYMENT_STRATEGY_SELECTOR_COMPONENT = 'spinnaker.core.deploymentStrategy.deploymentStrategySelector';
module(DEPLOYMENT_STRATEGY_SELECTOR_COMPONENT, []).component(
'deploymentStrategySelector',
react2angular(withErrorBoundary(DeploymentStrategySelector, 'deploymentStrategySelector'), [
'command',
'onStrategyChange',
'labelColumns',
'fieldColumns',
]),
);