@omniumretail/component-library 1.3.30 → 1.3.31
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.
|
@@ -25112,7 +25112,7 @@ const ResponsiveTable = (props) => {
|
|
|
25112
25112
|
style: { margin: -4, cursor: "pointer" },
|
|
25113
25113
|
children: selectedCells[cellIndex2]?.value?.type || "X"
|
|
25114
25114
|
}
|
|
25115
|
-
) :
|
|
25115
|
+
) : null;
|
|
25116
25116
|
return /* @__PURE__ */ jsx(
|
|
25117
25117
|
"div",
|
|
25118
25118
|
{
|
|
@@ -25146,6 +25146,9 @@ const ResponsiveTable = (props) => {
|
|
|
25146
25146
|
}
|
|
25147
25147
|
);
|
|
25148
25148
|
}
|
|
25149
|
+
if (templateEditMode) {
|
|
25150
|
+
return null;
|
|
25151
|
+
}
|
|
25149
25152
|
if (originalCellContent2) {
|
|
25150
25153
|
return /* @__PURE__ */ jsx(Tag, { color: originalCellContent2.color, style: { margin: -4 }, children: originalCellContent2.type });
|
|
25151
25154
|
}
|