coolify/resources/views/livewire/project/delete-environment.blade.php
Andras Bacsai fd89735521 Added +add flows everywhere
ui: changed vibrant button to not so vibrant
2023-07-26 13:23:47 +02:00

8 lines
347 B
PHP

<div x-data="{ deleteEnvironment: false }">
<x-naked-modal show="deleteEnvironment" title="Delete Environment"
message='This environment will be deleted. It is not reversible. <br>Please think again.' />
<x-forms.button isError x-on:click.prevent="deleteEnvironment = true">
Delete Environment
</x-forms.button>
</div>