@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.js CHANGED
@@ -13084,7 +13084,7 @@ import { memo as memo3 } from "react";
13084
13084
  import { jsx as jsx3 } from "react/jsx-runtime";
13085
13085
  var ResponsiveTimestampCell = memo3(({ date }) => {
13086
13086
  const formattedTime = date === void 0 ? "" : (date instanceof Date ? date : new Date(date)).toISOString().slice(0, 23).replace("T", " ");
13087
- return /* @__PURE__ */ jsx3("div", { style: { width: "100%" }, children: formattedTime });
13087
+ return /* @__PURE__ */ jsx3("span", { style: { display: "inline-block", width: "100%" }, children: formattedTime });
13088
13088
  });
13089
13089
 
13090
13090
  // src/types/error-levels.ts
@@ -16080,7 +16080,7 @@ var SpansDataGrid = ({
16080
16080
  const virtualItems = virtualizer.getVirtualItems();
16081
16081
  const totalVirtualSize = virtualizer.getTotalSize();
16082
16082
  const paddingTop = virtualItems.length > 0 ? virtualItems[0]?.start ?? 0 : 0;
16083
- const paddingBottom = virtualItems.length > 0 ? totalVirtualSize - (virtualItems.at(-1)?.end ?? 0) : 0;
16083
+ const paddingBottom = virtualItems.length > 0 ? totalVirtualSize - (virtualItems.at(-1)?.end ?? 0) : totalVirtualSize;
16084
16084
  const seenSpanIdsRef = useRef6(void 0);
16085
16085
  seenSpanIdsRef.current ??= new Set((filteredSpans ?? []).map((span) => span.span_id));
16086
16086
  useLayoutEffect3(() => {