fixes here and there

This commit is contained in:
ayntk-ai
2024-09-02 19:27:21 +02:00
parent 843e3fb599
commit dfd218ec06
11 changed files with 58 additions and 79 deletions

View File

@@ -10,14 +10,14 @@
@if ($backup->database_id !== 0)
<x-modal-confirmation
title="Confirm Backup Schedule Deletion?"
buttonTitle="Delete"
buttonTitle="Delete Backups and Schedule"
isErrorButton
submitAction="delete"
:checkboxes="$checkboxes"
:actions="['The selected backup schedule will be deleted.', 'Scheduled backups for this database will be stopped (if this is the only backup schedule for this database).']"
confirmationText="{{ $backup->database->name }}"
confirmationLabel="Please confirm the execution of the actions by entering the Database Name of the scheduled backups below"
shortConfirmationLabel="Database Name"
submitAction="delete"
/>
@endif
</div>

View File

@@ -38,7 +38,6 @@
title="Confirm Backup Deletion?"
buttonTitle="Delete"
isErrorButton
type="button"
submitAction="deleteBackup({{ data_get($execution, 'id') }})"
{{-- :checkboxes="$checkboxes" --}}
:actions="[

View File

@@ -6,7 +6,7 @@
:actions="['This will delete the selected environment.']"
confirmationLabel="Please confirm the execution of the actions by entering the Environment Name below"
shortConfirmationLabel="Environment Name"
buttonTitle="Delete Environment"
confirmationText="{{ $environmentName }}"
step3ButtonText="Permanently Delete Environment"
:confirmWithPassword="false"
step2ButtonText="Permanently Delete Environment"
/>

View File

@@ -3,10 +3,10 @@
buttonTitle="Delete Project"
isErrorButton
submitAction="delete"
:actions="['This will delete the selected project.']"
:actions="['This will delete the selected project', 'All Environments inside the project will be deleted as well.']"
confirmationLabel="Please confirm the execution of the actions by entering the Project Name below"
shortConfirmationLabel="Project Name"
buttonTitle="Delete Project"
confirmationText="{{ $projectName }}"
step3ButtonText="Permanently Delete Project"
:confirmWithPassword="false"
step2ButtonText="Permanently Delete Project"
/>