Simon
Simon
> But ... for the immediate UI/UX in the MVP we can just have an in-line tag creation form. Isn't it what we had before #209 ?: I might need...
Ok I'll try to replicate this on my laptop, it might be an issue linked to my browser. Thanks for checking on your side.
The PR https://github.com/dwyl/mvp/pull/254 fixed > as noted in https://github.com/dwyl/mvp/issues/247 I have lost data typed into the item.text on several occasions. I think this issue can be closed
At the end I'm not using the changeset in the form: https://github.com/dwyl/mvp/pull/209/files#diff-59b6eab9140cffaf2f252c0ae8a634274500b7f7922495151054fe029e7aba1fR2-R6
The issue is that the tag text is one word without spaces so it overflow the table width see https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Text/Wrapping_Text We can see that if we create a long tag...
resolved by adding the following classes to the `span` containing the tag name: `overflow-hidden text-ellipsis whitespace-nowrap inline-block w-40` see also https://stackoverflow.com/questions/17779293/css-text-overflow-ellipsis-not-working 
Not there yet:  The width is applied to all the tags, it work for long text however for smaller text we want the pill width to match the length...
The max width are working, I wasn't using the correct tailwind class. However the default max-width are too long: https://tailwindcss.com/docs/max-width Luckily Tailwind provides also a way to have a customised...
tested on mobile, see https://github.com/dwyl/mvp/pull/219#discussion_r1034893150 deployed and fly version fixed: 
> "Tested on mobile" but screenshots still on desktop ... desktop_computer:  We can see the pills length is based on the tag name, except when the name is too...