From e9bb8909c9d52315573537d97e731efc68859184 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 18 Nov 2020 11:33:13 -0800 Subject: [PATCH] Removing min width from chip list to fix wrapping issue. --- chip-list.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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. })