-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show join command during restore in Embedded Cluster #4826
Show join command during restore in Embedded Cluster #4826
Conversation
0e43624
to
a5b32af
Compare
a5b32af
to
b54ca3b
Compare
web/src/Root.tsx
Outdated
@@ -501,6 +501,9 @@ const Root = () => { | |||
isEmbeddedClusterEnabled={Boolean( | |||
state.adminConsoleMetadata?.isEmbeddedCluster | |||
)} | |||
isEmbeddedClusterNodeWaiting={ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not keep it the same name?
isEmbeddedClusterNodeWaiting={ | |
isEmbeddedClusterWaitingForNodes ={ |
468b772
to
baade34
Compare
</div> | ||
)} | ||
{Utilities.isInitialAppInstall(app) || | ||
(isEmbeddedClusterWaitingForNodes && ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't it be more like this:
{(Utilities.isInitialAppInstall(app) || isEmbeddedClusterWaitingForNodes) && (
<div>
...
</div>
)}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
youre right. ugh prettier works against me sometimes
7d7c40c
to
85cb67b
Compare
85cb67b
to
1b48567
Compare
What this PR does / why we need it:
https://app.shortcut.com/replicated/story/106757/show-a-dedicated-node-join-page-during-restores
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Steps to reproduce
Does this PR introduce a user-facing change?
Does this PR require documentation?