Skip to content

Commit 07f401b

Browse files
committed
show container update logs
1 parent af8726c commit 07f401b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend/src/routes/system.route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ systemRoute.post('/update-container', [authenticateToken, requireAdmin], async (
119119
} catch (error) {
120120
console.error('Error updating container:', error);
121121
res.status(StatusCodes.INTERNAL_SERVER_ERROR).json({
122-
message: 'Failed to update container',
122+
message: JSON.stringify(error),
123123
error: (error as Error).message
124124
});
125125
}

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lab-dash-frontend",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"private": true,
55
"scripts": {
66
"dev": "vite --host",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lab-dash",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"description": "This is an open-source user interface designed to manage your server and homelab",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)