@wandelbots/wandelbots-js-react-components 2.8.0 → 2.8.1

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
@@ -8632,14 +8632,15 @@ const Ya = ({
8632
8632
  const i = [];
8633
8633
  for (const [s, a] of n.entries())
8634
8634
  a && i.push(s);
8635
- return i.length === 0 ? null : /* @__PURE__ */ b.jsx(
8635
+ return /* @__PURE__ */ b.jsx(
8636
8636
  ct,
8637
8637
  {
8638
8638
  color: "error",
8639
8639
  sx: {
8640
8640
  margin: "0.5rem 1rem",
8641
8641
  textAlign: "center",
8642
- visibility: i.length ? "visible" : "collapse"
8642
+ minHeight: "1.5rem",
8643
+ visibility: i.length ? "visible" : "hidden"
8643
8644
  },
8644
8645
  children: t("Jogging.JointLimitsReached.lb", {
8645
8646
  jointNumbers: i.map((s) => s + 1).join(", ")