Skip to content

Commit df98bca

Browse files
committed
fix build issue
1 parent 69664d3 commit df98bca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@isneezy/vue-selectize",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"main": "./dist/vue-selectize.common.js",
55
"scripts": {
66
"serve": "vue-cli-service serve",

src/components/VSelectize.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ export default {
389389
if (this.activeOption) this.selectOption(this.activeOption)
390390
else if (typeof this.createItem === 'function' && this.searchText.length) {
391391
const option = this.createItem(this.searchText)
392-
if(isPromise(option))
392+
if(isPromise(option)) {
393393
option.then((o) => {
394394
this.selectOption(this.formatOption(o))
395395
this.setNotBusy()

0 commit comments

Comments
 (0)