Load the page, if you click on the list itens, they will be appended correctly to the textarea. But if you type "g", for example, on the textarea, you won't be able to add manually any other tag then those suggestions starting with "g".
It seems that the reason is this line "if(tag && self.isTagAllowed(tag))" of the tags plugin that will then call 'isValueAllowed' on the filter plugin that will populate the 'list' variable with: 'self.opts('filterItems') || self._suggestions || []'.
In this case 'self.opts('filterItems')' is returning only those suggestions starting with 'g' and isnt allowing me to add any other tag manually even though they are listed on the suggestions list.
Code:
To reproduce the bug:
Load the page, if you click on the list itens, they will be appended correctly to the textarea. But if you type "g", for example, on the textarea, you won't be able to add manually any other tag then those suggestions starting with "g".
It seems that the reason is this line "if(tag && self.isTagAllowed(tag))" of the tags plugin that will then call 'isValueAllowed' on the filter plugin that will populate the 'list' variable with: 'self.opts('filterItems') || self._suggestions || []'.
In this case 'self.opts('filterItems')' is returning only those suggestions starting with 'g' and isnt allowing me to add any other tag manually even though they are listed on the suggestions list.