We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7d33a7 commit 521e932Copy full SHA for 521e932
x-pack/plugins/lens/public/editor_frame_service/error_helper.ts
@@ -42,7 +42,10 @@ export function getOriginalRequestErrorMessage(error?: ExpressionRenderError | n
42
if (rootError.reason && rootError.type) {
43
return i18n.translate('xpack.lens.editorFrame.expressionFailureMessage', {
44
defaultMessage: 'Request error: {type}, {reason}',
45
- values: rootError,
+ values: {
46
+ reasion: rootError.reason,
47
+ type: rootError.type,
48
+ },
49
});
50
}
51
0 commit comments