summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--management/editor/elements.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/management/editor/elements.go b/management/editor/elements.go
index 4d9bd28..05b8065 100644
--- a/management/editor/elements.go
+++ b/management/editor/elements.go
@@ -387,7 +387,7 @@ 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('.');
chips.parent().find(sel).remove();
// iterate through all hidden tag inputs to re-name them with the correct ` + name + `.index