You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please provide your current version (can be found on the system page since v0.8.4)
Version:
Bug description
The first ingredient added to the ingredient list will have an index of 0. If that same ingredient is used again in it assigns index = 0 if index: when index = 0 returns False so the ingredient is added to the list again.
The code needs to be changed to something like if index is not None:
Version
Please provide your current version (can be found on the system page since v0.8.4)
Version:
Bug description
The first ingredient added to the
ingredient
list will have an index of 0. If that same ingredient is used again in it assignsindex = 0
if index:
when index = 0 returns False so the ingredient is added to the list again.The code needs to be changed to something like
if index is not None:
The code below is from the shopping list view.
The text was updated successfully, but these errors were encountered: