Skip to content

Commit

Permalink
control plane should come pre-selected on upgrade dialogue
Browse files Browse the repository at this point in the history
  • Loading branch information
basakil committed Feb 3, 2023
1 parent d89fc08 commit 1155631
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Note: put a minus inside item selector, prior to constructing a task for it..
- [x] button tooltips (in cluster selection, ...etc screen) are not available..
- [ ] there's no edit cluster dialogue (to add/remove nodes)...
+HARDWORK
- [ ] control plane should come pre-selected on upgrade dialogue..
- [x] control plane should come pre-selected on upgrade dialogue..
- [ ] cluster-create,
- [ ] cannot close cni dialogue, when in progress..
in slow regions ?? may not be able to pass to cni stage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ export default function StepSelectUpgradeType({ goToNamedStep, ...props }) {
<InputRadioGroup
name="machineType"
control={control}
defaultValue="worker"
defaultValue="controlPlane"
options={[
{
label: "Worker",
value: "worker",
},
{
label: "Control Plane",
value: "controlPlane",
},
{
label: "Workers",
value: "worker",
},
]}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/react-app/pages/ManagementClusterInfoPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export default function ManagementClusterInfoPage() {
</Button>
</Tooltip>

<Tooltip title="upgrade / downgrade et">
<Tooltip title="upgrade / downgrade">
<Button
disabled={
x.status !== "Provisioned"
Expand Down

0 comments on commit 1155631

Please sign in to comment.