-
Notifications
You must be signed in to change notification settings - Fork 14
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
Shared State w/ Hooks #84
Conversation
c33717f
to
260a184
Compare
f68f776
to
7d96a53
Compare
3c4b7a4
to
03966c4
Compare
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.
I noticed that when I am changing the AWS Key, I cannot proceed to the next step, but I also get no feedback what went wrong.
</li> | ||
<li> | ||
<strong>Global Input</strong> | ||
<span>{(formData.awsCloudWatchGlobalInput && formData.awsCloudWatchGlobalInput.value) ? 'true' : 'false'}</span> |
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.
We could also use a glyph (checkmark/cross) in here?
); | ||
} | ||
const format = (numString) => { | ||
return Number(numString).toLocaleString('en-US'); |
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.
Maybe we should leave out the locales so we are defaulting to the browser/os setting?
Bypassed the reliance of Reflux to just use Hooks to manage the state of the fields.