When users tries to save a record, they are getting the "Leave site? Changes you have made may not be saved." promptIssue When users attempt to save changes to an ACL or UI policy, they are getting the "Leave site? Changes you have made may not be saved." prompt.ReleaseAllCauseThis is due to a syntax editor macro where the name is set to onsubmit.ResolutionCheck in the syntax_editor_macro table for any records named onsubmit and either rename this record or delete it. What is happening here is each syntax editor macro gets rendered on the page like so: < textarea name="macro.name" > $text of the macro is inside$ < /textarea > If one of the syntax editor macro is called "onsubmit", then this can cause issues as this is essentially overriding the form submit with < textarea name="onsubmit" > text of the macro < /textarea >Related LinksSyntax Editor Macros