-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix placeholder text in Text Input component #5769
Conversation
🚀 Preview for commit 2735003 at: https://66ad2ae995b5979fbce46b75--layer5.netlify.app |
Signed-off-by: Siddharth Baleja <[email protected]>
🚀 Preview for commit fcdf1ac at: https://66ad342943ec4dab4df6f5e9--layer5.netlify.app |
@Ashparshp Can you please review this PR. |
1 similar comment
@Ashparshp Can you please review this PR. |
@siddharthbaleja7 Thanks for your contribution, let's discuss this on the website's call. Please add this as an agenda item to the meeting minutes. |
@@ -80,7 +80,7 @@ export const TextInputGuidance = () => { | |||
</p> | |||
<Row Hcenter> | |||
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}> | |||
<Input placeholder="Placeholder goes here" /> | |||
<Input placeholder="PlaceHolder" /> |
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.
use
<Input placeholder="PlaceHolder" /> | |
<Input placeholder="Placeholder" /> |
@siddharthbaleja7 there is a small change requested. Will you able to quickly complete that? |
@sudhanshutech Sure |
Signed-off-by: siddharthbaleja7 <[email protected]>
🚀 Preview for commit 975273a at: https://66b45c24be40e59a6a01572d--layer5.netlify.app |
Description
This PR addresses an issue with the placeholder text in the Text Input component. The current placeholder text reads "PlaceHolder goes here" when it should be "placeHolder".
Fixes #5738
Expected Behavior
The placeholder text should be updated to display "placeHolder" instead of "PlaceHolder goes here". You can review the component at Sistent Text Input for reference.
Changes Made
Please review the changes and let me know if further adjustments are needed.