generated from codersforcauses/django-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Issue 113 help center page #121
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Remove unused class in the submit button as the disable prop is used instead of a class name to disable the button. - Remove the writein interface to then import it.
- Fix data change effect causes infinite errors in console to be logged.
- Add back button in header that goes back to the previous page on the site using a router. - Modify the submit button to use correct variant styling instead of custom styling. - Adjust flex-box styling.
- Add new prop to write in component to pass classnames to the main div of the write-in component. - Flex the report page to be more dynamic.
- Allow component to grow to the height to take up the remaining space. - Add flex and flex-grow to fields in the write-in component.
- Add new custom upload image icon. - Refactor upload image section to be its own component with the ability to hide image previews. - Prevent report description from going below a certain height when uploading many images.
- Set default upper limit to inifinity (no limit) on image upload component. - Set report page upper limit on image uploads to 5.
- Add option to remove the back button in the header through a prop. - Add the ability to pass in the title as a prop to the compojnent.
- Remove import as image component was refactored.
- Add new icon for delete button. - Add fade in effect with transparent background to distinguish the delete button.
- Fix bug preventing last uploaded image from being deleted as the effect prevented preview updates if the length was zero (no more images).
- Duplicate header component present in issue-90 branch which is more up to date so this current version is being deleted. - Update imports to fix errors.
- Set the profile tag for report to send to the report page. - Modify the main function to match the desired style. - Fix imports by removing unused components.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
yunho7687
approved these changes
Jul 15, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Change Summary
This pull request follows up on issues #75 and #81 to implement the Help Center page. The Help Center page provides navigation to the Report a Problem page (#90) and the Contact page. The page reuses the tag component created in issue #81 and will include a header component similar to the one used on the Report a Problem page. This header component will be integrated into the report a problem page.
Changes Made
Help Center Page:
Created a new Help Center page within the pages/accout/help.
Added navigation tags for "Help Center" and "Contact" pages using the tag component from issue #81.
Header Component:
Created the header component from the Report a Problem page (#90).
Navigation:
Implemented navigation links within the Help Center page to direct users to the Report a Problem page and the Contact page.