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