Draft emails fix onblur on text input and callout banner component overflow (#18310)
Before <img width="396" height="759" alt="SCR-20260301-daft" src="https://github.com/user-attachments/assets/c3fb3a19-3456-424d-9fd2-dd13ed0d2ad5" /> After <img width="391" height="752" alt="SCR-20260301-daio" src="https://github.com/user-attachments/assets/80a64991-6e69-4ddf-b968-bdc788af02cd" />
This commit is contained in:
+2
@@ -56,6 +56,7 @@ it('Preserves the properties defined in the previous version but not in the next
|
||||
"stepId": "",
|
||||
},
|
||||
"id": "1",
|
||||
"measured": undefined,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
@@ -121,6 +122,7 @@ it('Replaces duplicated properties with the next value', () => {
|
||||
"stepId": "",
|
||||
},
|
||||
"id": "1",
|
||||
"measured": undefined,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
|
||||
+4
-1
@@ -3,7 +3,10 @@ import {
|
||||
type WorkflowDiagramNode,
|
||||
} from '@/workflow/workflow-diagram/types/WorkflowDiagram';
|
||||
|
||||
const nodePropertiesToPreserve: Array<keyof WorkflowDiagramNode> = ['selected'];
|
||||
const nodePropertiesToPreserve: Array<keyof WorkflowDiagramNode> = [
|
||||
'selected',
|
||||
'measured',
|
||||
];
|
||||
|
||||
export const mergeWorkflowDiagrams = (
|
||||
previousDiagram: WorkflowDiagram,
|
||||
|
||||
Reference in New Issue
Block a user