Skip to content

Commit

Permalink
🚑 Fix non-filtering of creatable tags (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
jheubuch authored Jun 21, 2024
1 parent 23f2fc1 commit e45d968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/kotlin/de/hbch/traewelling/ui/tag/Tag.kt
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fun StatusTags(
tagData = tagFormData,
tagViewModel = tagViewModel,
statusId = statusId,
alreadyAddedTags = tags.map { it.safeKey },
alreadyAddedTags = currentTags.map { it.safeKey },
onSaveSucceeded = {
tagsRequested = false
tagFormVisible = false
Expand Down

0 comments on commit e45d968

Please sign in to comment.