@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.81 → 0.0.1-alpha.82
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.
|
@@ -26261,7 +26261,13 @@ const getEnrichedColumns = ({
|
|
|
26261
26261
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(ShortenedTextWithTooltip, { trimLength: possibleTrimLength, text: possibleUndefinedValue });
|
|
26262
26262
|
}
|
|
26263
26263
|
}
|
|
26264
|
-
|
|
26264
|
+
if (value === void 0) {
|
|
26265
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { children: "Raw: undefined" });
|
|
26266
|
+
}
|
|
26267
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { children: [
|
|
26268
|
+
"Raw: ",
|
|
26269
|
+
JSON.stringify(value)
|
|
26270
|
+
] });
|
|
26265
26271
|
},
|
|
26266
26272
|
width: possibleColWidth,
|
|
26267
26273
|
filterDropdown: ({ setSelectedKeys, selectedKeys, confirm, clearFilters, close }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
|