-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Saving Improvements #846
Saving Improvements #846
Conversation
this.props.mergeEditorState({ activityInterval: ACTIVITY_INTERVAL }); | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is addressing a react warning. This is moved to the save method so that components can't update themselves after render.
Codecov Report
@@ Coverage Diff @@
## master #846 +/- ##
==========================================
- Coverage 63.98% 63.97% -0.02%
==========================================
Files 171 171
Lines 6514 6523 +9
Branches 1522 1522
==========================================
+ Hits 4168 4173 +5
- Misses 1829 1833 +4
Partials 517 517
Continue to review full report at Codecov.
|
@@ -237,8 +238,13 @@ | |||
"type_label": "When a contact arrives at this point in your flow..." | |||
}, | |||
"groups": "Groups", | |||
"issue": { | |||
"legacy_extra": "Invalid regular expression found: [[regex]]" | |||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missed some i18n on issues
Tries to address possibility of stale implicit saving and save lockout. Also adds a separate monitor to check for stale changes.