Skip to content
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

add task solution #4669

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

add task solution #4669

wants to merge 2 commits into from

Conversation

DSOst
Copy link

@DSOst DSOst commented Dec 19, 2024

❗️ Copy this Checklist to the Pull Request description after links, and put - [x] before each point after you checked it.

  • Icon implemented using background-image CSS property
  • Inputs are written inside of 'form' tag with correctly passed attributes
  • All Typical Mistakes from BEM lesson theory are checked.
  • Code follows all the Code Style Rules ❗️

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


Thank you for your hard work on this project! 😊 While your code meets many of the task requirements, there's a critical issue with the HTML forms that needs to be addressed before we can approve the pull request. The <form> tags are self-closing, which is incorrect in HTML. This affects the functionality of the forms, as they need both opening and closing tags to properly encapsulate their contents. Please correct this issue to ensure the forms work as expected. Once you've made these changes, feel free to resubmit, and I'll be happy to review it again. Keep up the great work! 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

🔄 Fix the issues, commit the changes, and then re-request my review using the Re-request review button in the Reviewers tab.

src/index.html Outdated
Comment on lines 20 to 23
<form
class="search-bar"
data-qa="big"
>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The <form> tag is incorrectly self-closing. In HTML, <form> elements should have both opening and closing tags to properly contain their child elements. Change <form /> to <form> and ensure it has a corresponding </form> tag.

src/index.html Outdated
Comment on lines 31 to 34
<form
class="search-bar"
data-qa="small"
>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to the previous form, this <form> tag is incorrectly self-closing. Ensure that it has both opening and closing tags to properly encapsulate the input element. Change <form /> to <form> and ensure it has a corresponding </form> tag.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, the pull request review was unsuccessful for the following reasons:

Warning

No changes were made in the pull request since the last review. Please make sure that you have added files to the pull request and committed the changes.
[CODE: 7]

If the issue is within your control, please address it.
The next review attempt will automatically launch in 1 hour.
If you believe this is an error or need assistance, please contact the support team.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, the pull request review was unsuccessful for the following reasons:

Warning

No changes were made in the pull request since the last review. Please make sure that you have added files to the pull request and committed the changes.
[CODE: 7]

If the issue is within your control, please address it.
The next review attempt will automatically launch in 1 hour.
If you believe this is an error or need assistance, please contact the support team.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Summary

Great job on addressing the previous issues with the HTML forms! 🎉 The <form> tags are now correctly implemented with both opening and closing tags, ensuring that the forms function as expected. Your CSS file is well-structured and effectively applies styles to the elements, with no critical issues found.

While the main issue with the HTML forms has been resolved, remember to always ensure that your HTML tags are properly opened and closed to avoid any functionality problems. This attention to detail is crucial for developing robust web applications.

Keep up the good work, and continue to learn from these experiences. Addressing such issues will help you improve your coding skills and produce even better solutions in the future. 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

Comment on lines +20 to +22
<form
class="search-bar"
data-qa="big">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The <form> tag is incorrectly self-closing. It should have a separate closing tag </form> after the input element to properly encapsulate its contents.

Comment on lines +30 to +32
<form
class="search-bar"
data-qa="small">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The <form> tag is incorrectly self-closing. It should have a separate closing tag </form> after the input element to properly encapsulate its contents.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants