fix: show stopped services in list + loading bar on action #32
@@ -12,8 +12,8 @@ android {
|
||||
applicationId = "com.devlab.app"
|
||||
minSdk = 26
|
||||
targetSdk = 37
|
||||
versionCode = 7
|
||||
versionName = "1.6.0"
|
||||
versionCode = 8
|
||||
versionName = "1.6.1"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
||||
@@ -372,6 +372,13 @@ private fun ServicesTab(state: ServerDetailUiState, viewModel: ServerDetailViewM
|
||||
)
|
||||
Spacer(modifier = Modifier.height(8.dp))
|
||||
|
||||
if (state.serviceActionRunning != null) {
|
||||
LinearProgressIndicator(
|
||||
modifier = Modifier.fillMaxWidth().padding(bottom = 8.dp),
|
||||
color = MaterialTheme.colorScheme.primary
|
||||
)
|
||||
}
|
||||
|
||||
if (state.serviceActionResult != null) {
|
||||
Card(
|
||||
colors = CardDefaults.cardColors(
|
||||
|
||||
Binary file not shown.
@@ -573,7 +573,7 @@ class ApiController
|
||||
throw new \RuntimeException('SSH connection failed');
|
||||
}
|
||||
|
||||
$output = $ssh->exec('systemctl list-units --type=service --no-pager --no-legend 2>/dev/null | head -50');
|
||||
$output = $ssh->exec('systemctl list-units --type=service --all --no-pager --no-legend 2>/dev/null');
|
||||
$ssh->disconnect();
|
||||
|
||||
$services = [];
|
||||
|
||||
Reference in New Issue
Block a user