@localstack/appinspector-ui 1.0.159 → 1.0.161

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.cjs CHANGED
@@ -13070,7 +13070,7 @@ var import_react31 = require("react");
13070
13070
  var import_jsx_runtime3 = require("react/jsx-runtime");
13071
13071
  var ResponsiveTimestampCell = (0, import_react31.memo)(({ date }) => {
13072
13072
  const formattedTime = date === void 0 ? "" : (date instanceof Date ? date : new Date(date)).toISOString().slice(0, 23).replace("T", " ");
13073
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { style: { width: "100%" }, children: formattedTime });
13073
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { style: { display: "inline-block", width: "100%" }, children: formattedTime });
13074
13074
  });
13075
13075
 
13076
13076
  // src/types/error-levels.ts
@@ -16056,7 +16056,7 @@ var SpansDataGrid = ({
16056
16056
  const virtualItems = virtualizer.getVirtualItems();
16057
16057
  const totalVirtualSize = virtualizer.getTotalSize();
16058
16058
  const paddingTop = virtualItems.length > 0 ? virtualItems[0]?.start ?? 0 : 0;
16059
- const paddingBottom = virtualItems.length > 0 ? totalVirtualSize - (virtualItems.at(-1)?.end ?? 0) : 0;
16059
+ const paddingBottom = virtualItems.length > 0 ? totalVirtualSize - (virtualItems.at(-1)?.end ?? 0) : totalVirtualSize;
16060
16060
  const seenSpanIdsRef = (0, import_react38.useRef)(void 0);
16061
16061
  seenSpanIdsRef.current ??= new Set((filteredSpans ?? []).map((span) => span.span_id));
16062
16062
  (0, import_react38.useLayoutEffect)(() => {