@industry-theme/repository-composition-panels 0.2.18 → 0.2.19

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.
@@ -8564,7 +8564,7 @@ const GitChangesPanelContent = ({
8564
8564
  ]
8565
8565
  }
8566
8566
  );
8567
- const Content = () => {
8567
+ const renderContent = () => {
8568
8568
  if (isLoading) {
8569
8569
  return /* @__PURE__ */ jsx(
8570
8570
  "div",
@@ -8625,7 +8625,7 @@ const GitChangesPanelContent = ({
8625
8625
  };
8626
8626
  return /* @__PURE__ */ jsxs("div", { style: { display: "flex", flexDirection: "column", height: "100%" }, children: [
8627
8627
  /* @__PURE__ */ jsx("div", { style: { height: 40, borderBottom: `1px solid ${theme.colors.border}` }, children: /* @__PURE__ */ jsx(ToggleButtons, {}) }),
8628
- /* @__PURE__ */ jsx("div", { style: { flex: 1, overflow: "auto" }, children: /* @__PURE__ */ jsx(Content, {}) }),
8628
+ /* @__PURE__ */ jsx("div", { style: { flex: 1, overflow: "auto" }, children: renderContent() }),
8629
8629
  contextMenu.visible && createPortal(
8630
8630
  /* @__PURE__ */ jsxs(
8631
8631
  "div",