You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Saved Object editor is supposed to be the last resort for fixing broken objects, but currently if you delete an index pattern and try to view the saved object the editor fails to load with a fatal error.
The text was updated successfully, but these errors were encountered:
We were previously using service#get() to load a saved object before loading it into the saved object editor. This allowed
us to edit fields that were not actually saved to the object but needed an editor. Now, we are reading the mapping config
off of the SavedObject class so that we don't have to actually load the savedObject.
This fixeselastic#3914 which was caused by the savedObject class rejecting the #get()
promise due to a missing indexPattern.
We were previously using service#get() to load a saved object before loading it into the saved object editor. This allowed
us to edit fields that were not actually saved to the object but needed an editor. Now, we are reading the mapping config
off of the SavedObject class so that we don't have to actually load the savedObject.
This fixeselastic#3914 which was caused by the savedObject class rejecting the #get()
promise due to a missing indexPattern.
The Saved Object editor is supposed to be the last resort for fixing broken objects, but currently if you delete an index pattern and try to view the saved object the editor fails to load with a fatal error.
The text was updated successfully, but these errors were encountered: