#396-AddBodyTextTxtCard #407
Labels
No labels
_CRITICAL_
API
app
backEnd
Blocked, waiting for further changes
bug
cleanup
close
design
duplicate
enhancement
feature request
frontEnd
help wanted
invalid
low priority
needs input
needs review
project documentation
question
research
reviewed
script
security
SQL
style
testing
topLevel
wontfix
No milestone
No project
No assignees
4 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
Andras/BoundlessFlowCampus2K!407
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "#396-AddBodyTextTxtCard"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Changed the TextView.js file to add a TextArea.
The text area is resizable vertically and allows new lines.
It uses separate editing than the title to avoid mix-ups and UX confusion
I have reviewed the files concerning this issue(textView.js) and also the application to see if everything working as intended and have come to the conclusion that overall everything is working fine. Just some small inconsistencies.
"const [editingField, setIsEditing] = useState(null);" should be const [editingField, setEditing] = useState(null); since it is no longer an boolean.
Also you set "useState(null);" so it expects a null value but later you use "setIsEditing(false);". You should change it for setIsEditing(null);
Other than these 2 inconsistencies everything is working as intended.
Done!
Review on #396
Whats done
Tested on Windows using Firefox
Inspected following files
Conclusion
It compilse and works as show in the image.
