We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69664d3 commit df98bcaCopy full SHA for df98bca
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@isneezy/vue-selectize",
3
- "version": "0.1.1",
+ "version": "0.2.0",
4
"main": "./dist/vue-selectize.common.js",
5
"scripts": {
6
"serve": "vue-cli-service serve",
src/components/VSelectize.vue
@@ -389,7 +389,7 @@ export default {
389
if (this.activeOption) this.selectOption(this.activeOption)
390
else if (typeof this.createItem === 'function' && this.searchText.length) {
391
const option = this.createItem(this.searchText)
392
- if(isPromise(option))
+ if(isPromise(option)) {
393
option.then((o) => {
394
this.selectOption(this.formatOption(o))
395
this.setNotBusy()
0 commit comments