@gingkoo/pandora-explorer 0.0.1-alpha.70 → 0.0.1-alpha.71

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/lib/es/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @gingkoo/pandora-explorer v0.0.1-alpha.70
2
+ * @gingkoo/pandora-explorer v0.0.1-alpha.71
3
3
  */
4
4
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
5
5
  import cx$1 from 'classnames';
@@ -7875,11 +7875,11 @@ const Explorer = /*#__PURE__*/forwardRef((props, ref) => {
7875
7875
  curInfo?.key && reloadNode(curInfo.key);
7876
7876
  }
7877
7877
  },
7878
- updateData: (key, closeload) => {
7878
+ updateData: async (key, closeload) => {
7879
7879
  if (key) {
7880
- loadData(key, undefined, closeload);
7880
+ await loadData(key, undefined, closeload);
7881
7881
  } else {
7882
- loadData(curInfo?.key || '', undefined, closeload);
7882
+ await loadData(curInfo?.key || '', undefined, closeload);
7883
7883
  }
7884
7884
  },
7885
7885
  updateCurListNode: key => {