-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1377 Unified view of the pipeline lifecycle - using a list
- Loading branch information
1 parent
4caf7b8
commit 2545a0b
Showing
8 changed files
with
197 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...web-core/components/extension/environments/deployment/steps/CandidateAdmissionRuleStep.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import {Space} from "antd"; | ||
import {FaTasks} from "react-icons/fa"; | ||
import {DeploymentStep} from "@components/extension/environments/deployment/steps/deploymentStatusSteps"; | ||
import CheckIcon from "@components/common/CheckIcon"; | ||
import SlotAdmissionRuleSummary from "@components/extension/environments/SlotAdmissionRuleSummary"; | ||
|
||
export function CandidateAdmissionRuleStep({rule}) { | ||
return ( | ||
<> | ||
<DeploymentStep | ||
avatar={<FaTasks/>} | ||
title={ | ||
<Space> | ||
<CheckIcon value={rule.check.ok}/> | ||
{/* TODO Input */} | ||
{/* TODO Overriding */} | ||
{/* Name of the rule */} | ||
<SlotAdmissionRuleSummary | ||
ruleId={rule.admissionRuleConfig.ruleId} | ||
ruleConfig={rule.admissionRuleConfig.ruleConfig} | ||
/> | ||
</Space> | ||
} | ||
/> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
...web-core/components/extension/environments/deployment/steps/candidateAdmissionRuleStep.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.