@localstack/appinspector-ui 1.0.101 → 1.0.103

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 CHANGED
@@ -14881,9 +14881,9 @@ var newSpanBackgroundColor = {
14881
14881
  };
14882
14882
  var LABEL_BEGINNING_OF_STREAM = "This is the beginning of the stream";
14883
14883
  var LABEL_END_OF_STREAM = "This is the end of the stream";
14884
- var LABEL_NO_SPANS = "There are no spans";
14885
- var LABEL_LOAD_OLDER = "Load older spans";
14886
- var LABEL_LOAD_NEWER = "Load newer spans";
14884
+ var LABEL_NO_SPANS = "There are no operations";
14885
+ var LABEL_LOAD_OLDER = "Load older operations";
14886
+ var LABEL_LOAD_NEWER = "Load newer operations";
14887
14887
  var StreamBoundaryRow = ({ colSpan, label }) => /* @__PURE__ */ jsx127(TableRow, { children: /* @__PURE__ */ jsx127(TableCell, { colSpan, sx: { fontStyle: "italic", textAlign: "center" }, children: /* @__PURE__ */ jsx127("span", { children: label }) }) });
14888
14888
  var LoadSpansRow = ({ colSpan, fetching, label, onFetch }) => /* @__PURE__ */ jsx127(TableRow, { children: /* @__PURE__ */ jsxs121(TableCell, { colSpan, sx: { textAlign: "center" }, children: [
14889
14889
  !fetching && /* @__PURE__ */ jsx127(Button2, { onClick: onFetch, sx: { my: 1 }, children: label }),
@@ -15088,7 +15088,7 @@ var SpansDataGrid = ({
15088
15088
  "data-testid": CLEAR_SPANS_TEST_ID,
15089
15089
  onClick: onClearSpans,
15090
15090
  startIcon: /* @__PURE__ */ jsx127(DeleteForeverOutlined, {}),
15091
- children: "Clear Events"
15091
+ children: "Clear Operations"
15092
15092
  }
15093
15093
  ),
15094
15094
  disabled: clearingSpans,
@@ -31279,7 +31279,8 @@ var SpansListPage = () => {
31279
31279
  }, []);
31280
31280
  const handleRetry = useCallback10(() => {
31281
31281
  void checkStatus();
31282
- }, [checkStatus]);
31282
+ fetchForward();
31283
+ }, [checkStatus, fetchForward]);
31283
31284
  const handleEnable = useCallback10(async () => {
31284
31285
  await api.setStatus({ status: "ENABLED" });
31285
31286
  void checkStatus();