diff --git a/src/components/StatusDashboard/current_migrations.jsx b/src/components/StatusDashboard/current_migrations.jsx
index 3425be528c..f890f18b35 100644
--- a/src/components/StatusDashboard/current_migrations.jsx
+++ b/src/components/StatusDashboard/current_migrations.jsx
@@ -192,12 +192,18 @@ function TableContent({ collapsed, name, resort, rows, select, sort, fetched })
return (
- {
- event.preventDefault();
- setState(href);
- }}>{row.name}
+ {row.success ?
+ {
+ event.preventDefault();
+ setState(href);
+ }}>{row.name}
+ : <>
+ ⚠️
+ {" "}{row.name}
+ >
+ }
|
|