diff options
-rw-r--r-- | management/editor/elements.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/management/editor/elements.go b/management/editor/elements.go index 4a95150..0f48400 100644 --- a/management/editor/elements.go +++ b/management/editor/elements.go @@ -386,9 +386,11 @@ func Tags(fieldName string, p interface{}, attrs map[string]string) []byte { chips.on('chip.delete', function(e, chip) { // convert tag string to class-like selector "some tag" -> ".some.tag" - var sel = '.__ponzu-tag.'+chip.tag.split(' ').join('.'); - console.log(sel); - console.log(chips.parent().find(sel)); + var sel = '.__ponzu-tag'; + if (chip.tag.length > 0) { + sel += '.'; + sel += chip.tag.split(' ').join('.'); + } chips.parent().find(sel).remove(); // iterate through all hidden tag inputs to re-name them with the correct ` + name + `.index |