fix: do not show configuration changed if config_hash is null

This commit is contained in:
Andras Bacsai 2023-10-18 11:22:56 +02:00
parent a61a86dc3b
commit b101fbacd4

View File

@ -5,7 +5,7 @@
<x-forms.button type="submit">
Save
</x-forms.button>
@if ($isConfigurationChanged)
@if ($isConfigurationChanged && !is_null($application->config_hash))
<div class="font-bold text-warning">Configuration not applied to the running application. You need to
redeploy.</div>
@endif