jobdone-shared-files 1.1.0 → 1.1.1
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.
- package/autocompleteSelect.vue +1 -1
- package/package.json +1 -1
package/autocompleteSelect.vue
CHANGED
|
@@ -155,7 +155,7 @@ const checkValueIsUnselected = (checkValue) => {
|
|
|
155
155
|
if(valueIsUnselected.value.includes(checkValue)){
|
|
156
156
|
return true
|
|
157
157
|
}
|
|
158
|
-
if((typeof
|
|
158
|
+
if((typeof checkValue) === 'object' && checkValue !== null && Object.keys(checkValue).length === 0){
|
|
159
159
|
return true
|
|
160
160
|
}
|
|
161
161
|
return false
|