summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--management/editor/elements.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/management/editor/elements.go b/management/editor/elements.go
index 05b8065..fd298fc 100644
--- a/management/editor/elements.go
+++ b/management/editor/elements.go
@@ -387,7 +387,8 @@ 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"
console.log(chip.tag);
- var sel = '.__ponzu-tag' + chip.tag.split(' ').join('.');
+ var sel = '.__ponzu-tag.' + chip.tag.split(' ').join('.');
+ console.log(sel);
chips.parent().find(sel).remove();
// iterate through all hidden tag inputs to re-name them with the correct ` + name + `.index