fix: view text and helpers

This commit is contained in:
peaklabs-dev
2025-01-09 13:56:00 +01:00
parent e01401a4dd
commit 1c357f987d

View File

@@ -19,10 +19,10 @@
@if(!$cloneVolumeData) @if(!$cloneVolumeData)
<div wire:key="volume-disabled"> <div wire:key="volume-disabled">
<x-modal-confirmation <x-modal-confirmation
title="Enable Volume Data Cloning" title="Enable Volume Data Cloning?"
buttonTitle="Enable Cloning" buttonTitle="Enable Volume Cloning"
submitAction="toggleVolumeCloning(true)" submitAction="toggleVolumeCloning(true)"
:actions="['This will temporarily stop all the containers to copy volume data.', 'The process runs in the background and may take a few minutes.']" :actions="['This will temporarily stop all the containers to copy the volume data to the new resources to ensure data consistency.', 'The process runs in the background and may take a few minutes.']"
:confirmWithPassword="false" :confirmWithPassword="false"
:confirmWithText="false" :confirmWithText="false"
/> />
@@ -30,12 +30,12 @@
@else @else
<div wire:key="volume-enabled" class="max-w-md"> <div wire:key="volume-enabled" class="max-w-md">
<x-forms.checkbox <x-forms.checkbox
label="Copy Volume Data" label="Clone Volume Data"
id="cloneVolumeData" id="cloneVolumeData"
wire:model="cloneVolumeData" wire:model="cloneVolumeData"
wire:change="toggleVolumeCloning(false)" wire:change="toggleVolumeCloning(false)"
:checked="$cloneVolumeData" :checked="$cloneVolumeData"
helper="Containers will be temporarily stopped during the cloning process." /> helper="Volume Data will be cloned to the new resources. Containers will be temporarily stopped during the cloning process." />
</div> </div>
@endif @endif
</div> </div>