We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f0b467 commit bfc576fCopy full SHA for bfc576f
1 file changed
src/core/server/ui_settings/saved_objects/migrations.ts
@@ -56,23 +56,4 @@ export const migrations = {
56
}),
57
references: doc.references || [],
58
59
- '7.13.0': (doc: SavedObjectUnsanitizedDoc<any>): SavedObjectSanitizedDoc<any> => ({
60
- ...doc,
61
- ...(doc.attributes && {
62
- attributes: Object.keys(doc.attributes).reduce(
63
- (acc, key) =>
64
- key === 'ml:fileDataVisualizerMaxFileSize'
65
- ? {
66
- ...acc,
67
- ['fileUpload:maxFileSize']: doc.attributes[key],
68
- }
69
- : {
70
71
- [key]: doc.attributes[key],
72
- },
73
- {}
74
- ),
75
- }),
76
- references: doc.references || [],
77
78
};
0 commit comments