mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
Taxons by ID converts id to string
This commit is contained in:
@@ -4,7 +4,7 @@ angular.module("ofn.admin").factory "Taxons", (taxons, $filter) ->
|
||||
@taxons = taxons
|
||||
|
||||
findByIDs: (ids) ->
|
||||
taxon for taxon in @taxons when taxon.id in ids.split(",")
|
||||
taxon for taxon in @taxons when taxon.id.toString() in ids.split(",")
|
||||
|
||||
findByTerm: (term) ->
|
||||
$filter('filter')(@taxons, term)
|
||||
Reference in New Issue
Block a user