ode-explorer 1.3.3-develop.202402221526 → 1.3.3-develop.202402221755
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/index.js +3 -3
- package/dist/version.txt +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -65319,13 +65319,13 @@ const defaultActions = [{
|
|
|
65319
65319
|
type: "onChange",
|
|
65320
65320
|
payload: value
|
|
65321
65321
|
});
|
|
65322
|
-
}, search =
|
|
65322
|
+
}, search = async (debouncedSearchInputValue2) => {
|
|
65323
65323
|
if (resource) {
|
|
65324
65324
|
if (dispatch({
|
|
65325
65325
|
type: "isSearching",
|
|
65326
65326
|
payload: true
|
|
65327
65327
|
}), !isAdml && debouncedSearchInputValue2.length >= 1 || isAdml && debouncedSearchInputValue2.length >= 3) {
|
|
65328
|
-
const resSearchShareSubjects =
|
|
65328
|
+
const resSearchShareSubjects = await odeServices.share().searchShareSubjects(appCode, resource.assetId, debouncedSearchInputValue2);
|
|
65329
65329
|
dispatch({
|
|
65330
65330
|
type: "addApiResult",
|
|
65331
65331
|
payload: resSearchShareSubjects
|
|
@@ -65352,7 +65352,7 @@ const defaultActions = [{
|
|
|
65352
65352
|
payload: false
|
|
65353
65353
|
});
|
|
65354
65354
|
}
|
|
65355
|
-
}
|
|
65355
|
+
};
|
|
65356
65356
|
return {
|
|
65357
65357
|
state,
|
|
65358
65358
|
showSearchAdmlHint: () => isAdml && state.searchInputValue.length < 3,
|
package/dist/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ode-explorer=1.0-b2school-SNAPSHOT 22/02/2024
|
|
1
|
+
ode-explorer=1.0-b2school-SNAPSHOT 22/02/2024 17:55:51
|
package/package.json
CHANGED