You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of this change, we should also modify the multiple item selector to use the <select> element for storing selected values rather than the current <input type=text> element and make corresponding changes to forms. (Update: Fixed in #3367).
The text was updated successfully, but these errors were encountered:
TLDR: Good riddance!
1. First and foremost, this patch replaces the unusual widget for selecting tag resources in Pontoon Admin with the multiple item selector that is more commonly used in Pontoon.
2. Secondly, the last bits of the old Tags Django code are now finally removed. It should now be much simpler to fix issues like #2122 and #2131.
3. Finally, the odd tag-admin frontend, which was only powering the old widget for selecting tag resources in Pontoon Admin, is now removed.
In total, the same (actually, I think it's much better) functionality uses some 95% smaller footprint.
Also included are a few smaller Pontoon Admin improvements:
- Unify dropdown style with the rest of the UI
- Use native date selector widget for target date
- Fix large margin in the external resources form
- Make multi item selector widget more semantic, which fixes the second part of #3368.
We use a custom widget for selecting multiple items. The generic multiple item selector should replace the more specific multiple team selector.
As part of this change, we should also modify the multiple item selector to use the<select>
element for storing selected values rather than the current<input type=text>
element and make corresponding changes to forms. (Update: Fixed in #3367).The text was updated successfully, but these errors were encountered: