beyond-rails 0.0.254 → 0.0.255
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/src/js/components/TagInput.js +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68c18389bc3fc3c322900aa4f5fb6883b68cb5255fc26bf3ed8ab257f55b22b6
|
4
|
+
data.tar.gz: d52ea6b4f1d3aee55fdf7e3d1b539c2128187158116af66eabca5dc3d40b328a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6af46b3f2c22d2aa4f2ba797071df8b0216923ec5943983293b68d3d6b5f393e7882a73ead03045add7489ca8caaf48a6460f8ea9e84287153c4f02cfb7a3602
|
7
|
+
data.tar.gz: bdacd91a41fd9cb6739253ae8639ef1340425822191287203896ccb4fb30b80215799cf36e98cbcb631cd72e057dacd89560d89789c3fc60423c7f5109cb0f07
|
@@ -138,6 +138,7 @@ export default class TagInput {
|
|
138
138
|
const tag = this.getTag(inputValue, options)
|
139
139
|
this.tags.push(tag)
|
140
140
|
this.dom.insertBefore(tag.elem, this.inputDiv)
|
141
|
+
this.change(this.tags.slice())
|
141
142
|
}
|
142
143
|
|
143
144
|
async addTagIfNeeded() {
|
@@ -151,8 +152,6 @@ export default class TagInput {
|
|
151
152
|
|
152
153
|
input.value = ''
|
153
154
|
suggestInput.value = ''
|
154
|
-
|
155
|
-
this.change(this.tags.slice())
|
156
155
|
}
|
157
156
|
|
158
157
|
removeTagIfNeeded() {
|