Fix server delete function and Implement pause/resume functionality

- Implement the server delete functionality in the server table and dropdown menu.
- Implement pause and resume functionality for server monitoring in the server table dropdown menu.
This commit is contained in:
Tola Leng
2025-07-17 23:03:40 +07:00
parent 6906a65952
commit 0cad374616
2 changed files with 310 additions and 190 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export interface Server {
hostname: string;
ip_address: string;
os_type: string;
status: 'up' | 'down' | 'warning';
status: 'up' | 'down' | 'warning' | 'paused';
uptime: string;
ram_total: number;
ram_used: number;