Update tags-box count when empty row is removed

This commit is contained in:
Abe Jellinek 2024-01-02 12:07:02 -08:00 committed by Dan Stillman
parent d62c9e217b
commit 9892601153

View file

@ -461,6 +461,7 @@
// Remove empty row at end
if (isNew && value === "") {
row.parentNode.removeChild(row);
this.updateCount();
return;
}