codyswanner / Meme-Cataloger

Learning ReactJS and Django while building something that I want to use
1 stars 1 forks source link

docs(Tag Handling): Tag Name vs Label #79

Closed codyswanner closed 2 months ago

codyswanner commented 3 months ago

Enforced stricter boundaries on where "name" vs "label" is used in relation to tags. "Name" is the database stored value for the string name associated with the tag; "label" is the value passed to MUI Autocomplete for rendering. While these should always match, consistency in naming is still important (especially on the backend, which should never use "label" except to grab the name of a newly created tag).

Closes #70