fix(ui): configuration changes modal values, colors and spacing

This commit is contained in:
ShadowArcanist
2026-05-22 21:22:50 +05:30
parent fcd63f40eb
commit bd744eb8dd
7 changed files with 58 additions and 58 deletions
@@ -306,7 +306,7 @@ class ApplicationConfigurationSnapshot
private function displayValue(mixed $value): string
{
if ($value === null) {
return 'Not set';
return '-';
}
if (is_bool($value)) {
@@ -323,7 +323,7 @@ class ApplicationConfigurationSnapshot
private function summarizeText(?string $value): string
{
if (blank($value)) {
return 'Not set';
return '-';
}
$value = trim((string) $value);