diff --git a/front/src/routes/dashboard/DashboardPage.jsx b/front/src/routes/dashboard/DashboardPage.jsx
index f8e99457d8..6af5bcfffc 100644
--- a/front/src/routes/dashboard/DashboardPage.jsx
+++ b/front/src/routes/dashboard/DashboardPage.jsx
@@ -2,6 +2,7 @@ import { Text } from 'preact-i18n';
import BoxColumns from './BoxColumns';
import EditBoxColumns from './EditBoxColumns';
import EmptyState from './EmptyState';
+import EditActions from './EditActions';
const DashboardPage = ({ children, ...props }) => (
@@ -20,20 +21,6 @@ const DashboardPage = ({ children, ...props }) => (
)}
- {props.dashboardEditMode && (
-
- )}
- {props.dashboardEditMode && (
-
- )}
{props.gatewayInstanceNotFound && (
@@ -57,6 +44,7 @@ const DashboardPage = ({ children, ...props }) => (
removeBox={props.removeBox}
/>
)}
+ {props.dashboardEditMode && }
diff --git a/front/src/routes/dashboard/EditActions.jsx b/front/src/routes/dashboard/EditActions.jsx
new file mode 100644
index 0000000000..e3851e8100
--- /dev/null
+++ b/front/src/routes/dashboard/EditActions.jsx
@@ -0,0 +1,20 @@
+import { Text } from 'preact-i18n';
+
+const EditActions = props => (
+
+);
+
+export default EditActions;