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 c794103 commit c7c3bc7Copy full SHA for c7c3bc7
airflow-core/src/airflow/ui/src/components/ErrorAlert.tsx
@@ -44,10 +44,7 @@ export const ErrorAlert = ({ error: err }: Props) => {
44
if (typeof details === "string") {
45
detailMessage = details;
46
} else if (Array.isArray(details)) {
47
- detailMessage = details.map(
48
- (detail) => `
49
- ${detail.loc.join(".")} ${detail.msg}`,
50
- );
+ detailMessage = details.map((detail) => `${detail.loc.join(".")} ${detail.msg}`);
51
} else {
52
detailMessage = Object.keys(details).map((key) => `${key}: ${details[key] as string}`);
53
}
0 commit comments