fix: do not show configuration changed if config_hash is null
This commit is contained in:
parent
a61a86dc3b
commit
b101fbacd4
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
<x-forms.button type="submit">
|
<x-forms.button type="submit">
|
||||||
Save
|
Save
|
||||||
</x-forms.button>
|
</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
|
<div class="font-bold text-warning">Configuration not applied to the running application. You need to
|
||||||
redeploy.</div>
|
redeploy.</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue