diff --git a/backend/src/api/boards.ts b/backend/src/api/boards.ts
index 50998db6..ccd8b2fd 100644
--- a/backend/src/api/boards.ts
+++ b/backend/src/api/boards.ts
@@ -98,7 +98,7 @@ router.post('/:boardID/copy-configuration', async (req, res) => {
);
await dalBoard.updateMany(boards, updatedBoard);
- res.status(200);
+ res.status(200).json(boards);
});
router.get('/:id', async (req, res) => {
diff --git a/frontend/src/app/components/add-post-modal/add-post.component.html b/frontend/src/app/components/add-post-modal/add-post.component.html
index bb66aeb0..4f2ecdd8 100644
--- a/frontend/src/app/components/add-post-modal/add-post.component.html
+++ b/frontend/src/app/components/add-post-modal/add-post.component.html
@@ -174,7 +174,7 @@
Update Post
cancel
-
+
No tags available.
UI Elements