Removing min width from chip list to fix wrapping issue.

This commit is contained in:
Matt Mo 2020-11-18 11:33:13 -08:00
parent d194ed6959
commit e9bb8909c9

View File

@ -48,7 +48,6 @@ class ChipList extends IgniteElement {
} }
mt-chip-list > .input-container > .input { mt-chip-list > .input-container > .input {
min-width: 1em;
outline: none; outline: none;
} }
@ -101,8 +100,7 @@ class ChipList extends IgniteElement {
.id(item.id) .id(item.id)
.property("color", item.chipColor ? item.chipColor : this.chipColor) .property("color", item.chipColor ? item.chipColor : this.chipColor)
.property("background", item.chipBackground ? item.chipBackground : this.chipBackground) .property("background", item.chipBackground ? item.chipBackground : this.chipBackground)
.property("onDelete", () => .property("onDelete", () => {
{
this.items = this.items.filter(needle => needle != item); this.items = this.items.filter(needle => needle != item);
this.changed = true; //Make sure changed flag was set. this.changed = true; //Make sure changed flag was set.
}) })