-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Low
-
Component/s: Page - Editor - Cloud
-
None
-
Minor
Issue Summary
Pinning the toolbar loses its state when clicking on legacy content.
Steps to Reproduce
- Edit a page with legacy content.
- Click on “Make Edits” in one of the legacy contents.
- Select a text outside of the legacy content and pin the toolbar
- Click on the element inside the legacy content.
- When you click the element (Step 4), this endpoint is being called:
https://<site>.atlassian.net/cgraphql?q=EditorPreferencesMutation
Payload
[
{
"operationName": "EditorPreferencesMutation",
"variables": { "toolbarDockingInitialPosition": "top" },
"query": "mutation EditorPreferencesMutation($toolbarDockingInitialPosition: String!) {\n updateUserPreferences(\n userPreferences: {confluenceEditorSettingsInput: {toolbarDockingInitialPosition: $toolbarDockingInitialPosition}}\n ) {\n confluenceEditorSettings {\n toolbarDockingInitialPosition\n __typename\n }\n __typename\n }\n}\n"
}
]
Response
[
{
"data": {
"updateUserPreferences": {
"confluenceEditorSettings": {
"toolbarDockingInitialPosition": "top",
"__typename": "ConfluenceEditorSettings"
},
"__typename": "UserPreferences"
}
}
}
]
Expected Results
The pinned toolbar status remains selected.
Actual Results
The toolbar pin status is reset.
Workaround
Currently, there is no known workaround for this behavior. A workaround will be added here when available