Yoon Han
Yoon Han
Yes, sure! In my project, I have a multi-select UI which a user can select assignee(s) of a task(like GitHub's PR). In that UI, I want to show the default...
I guess this issue arises when the previous sibling of `` element is just ``.
So, I came up with a solution that puts `ZERO_WIDTH_CHAR` as a previous sibling of a newly created tag element. Would it be right approach to this issue?
My possible workaround for this issue is like below, ```js // src/tagify.js ... import { UPDATE_DELAY, ZERO_WIDTH_CHAR } from './parts/constants' function Tagify(input, settings) { ... /** * Adds a tag...