@asaleh37/ui-base 25.9.6-2 → 25.9.6-3
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/package.json
CHANGED
|
@@ -123,7 +123,7 @@ const WorkflowDocumentPanel: React.FC<WorkflowDocumentPanelProps> = (props) => {
|
|
|
123
123
|
refDocumentId: props.refDocumentId,
|
|
124
124
|
},
|
|
125
125
|
successCallBkFn: (response: any) => {
|
|
126
|
-
setWorkflowDocumentInfo(response.data);
|
|
126
|
+
setWorkflowDocumentInfo(structuredClone(response.data));
|
|
127
127
|
},
|
|
128
128
|
failureCallBkFn: () => {
|
|
129
129
|
setWorkflowDocumentInfo({
|
|
@@ -347,7 +347,7 @@ const WorkflowDocumentPanel: React.FC<WorkflowDocumentPanelProps> = (props) => {
|
|
|
347
347
|
<Box
|
|
348
348
|
sx={{
|
|
349
349
|
flex: 1,
|
|
350
|
-
width: "100%",
|
|
350
|
+
width: "100%",
|
|
351
351
|
overflow: "hidden",
|
|
352
352
|
display: "flex",
|
|
353
353
|
// flexDirection: "column",
|
|
@@ -562,8 +562,8 @@ const WorkflowDocumentPanel: React.FC<WorkflowDocumentPanelProps> = (props) => {
|
|
|
562
562
|
<Paper
|
|
563
563
|
sx={{
|
|
564
564
|
display: "flex",
|
|
565
|
-
flexDirection: "column",
|
|
566
|
-
width:600,
|
|
565
|
+
flexDirection: "column",
|
|
566
|
+
width: 600,
|
|
567
567
|
padding: 2,
|
|
568
568
|
margin: 1,
|
|
569
569
|
alignItems: "center",
|