codyswanner / Meme-Cataloger

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

Duplicate options in Autocomplete #73

Closed codyswanner closed 3 months ago

codyswanner commented 3 months ago

Because of the way temporary/permanent tags work, the TagPopper on the image where a new tag was created exposes both the temporary and permanent tag, which can then be both selected causing another duplicate version of the tag to appear, which can then be selected... Maybe it would be better to not expose the temporary tag at all.

duplicate tag options

codyswanner commented 3 months ago

The problem was that the temporary tag was being exposed as an option in the Autocomplete; this has been fixed. See #68 for details and history.