This commit is contained in:
Andras Bacsai 2023-06-16 15:06:37 +02:00
parent b948457115
commit 3f28d19e06
4 changed files with 10 additions and 3 deletions

View File

@ -26,7 +26,7 @@ class Upgrade extends Component
try {
$this->showProgress = true;
resolve(UpdateCoolify::class)(true);
Toaster::success("Upgrading Coolify to {$this->latestVersion} version...");
Toaster::success("Upgrading to {$this->latestVersion} version...");
} catch (\Exception $e) {
return general_error_handler(err: $e, that: $this);
}

View File

@ -1,3 +1,3 @@
<?php
return '4.0.0-nightly.19';
return '4.0.0-nightly.20';

View File

@ -56,6 +56,13 @@
element.children[0].type = 'password';
}
}
if (element.nodeName === 'svg') {
if (element.parentElement.parentElement.children[0].type === 'password') {
element.parentElement.parentElement.children[0].type = 'text';
} else {
element.parentElement.parentElement.children[0].type = 'password';
}
}
}
function revive() {

View File

@ -4,7 +4,7 @@
"version": "3.12.32"
},
"v4": {
"version": "4.0.0-nightly.19"
"version": "4.0.0-nightly.20"
}
}
}