@iankibetsh/shframework 3.0.1 → 3.0.2
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/dist/library.js +1 -1
- package/dist/library.mjs +1 -1
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -2101,7 +2101,7 @@ function filterData(e){
|
|
|
2101
2101
|
});
|
|
2102
2102
|
} else {
|
|
2103
2103
|
shApis.doGet(props.fillSelects.url, { all: 1,filter_value: filterValue }).then(res => {
|
|
2104
|
-
suggestions.value = res.data.data;
|
|
2104
|
+
suggestions.value = res.data.data ?? res.data;
|
|
2105
2105
|
}).catch(res => {
|
|
2106
2106
|
console.log(res);
|
|
2107
2107
|
});
|
package/dist/library.mjs
CHANGED
|
@@ -2089,7 +2089,7 @@ function filterData(e){
|
|
|
2089
2089
|
});
|
|
2090
2090
|
} else {
|
|
2091
2091
|
shApis.doGet(props.fillSelects.url, { all: 1,filter_value: filterValue }).then(res => {
|
|
2092
|
-
suggestions.value = res.data.data;
|
|
2092
|
+
suggestions.value = res.data.data ?? res.data;
|
|
2093
2093
|
}).catch(res => {
|
|
2094
2094
|
console.log(res);
|
|
2095
2095
|
});
|