kolaente
da66eb7314
All checks were successful
continuous-integration/drone/push Build is passing
This change fixes a bug where an input query like "labels in test || labels in l" would be replaced with something like "undefinedabels in test || labels in l" or "3abels in test || labels in l" when there was a label starting with "l" - when it should not have touched that. The matching was changed so that only exact label matches are taken into account when searching for labels. Now, the above string would be replaced by "labels in 1 || labels in l" (when the label "test" has the id 1). Maybe resolves https://community.vikunja.io/t/filtering-by-label-ux-issues/2393/8