sureshanaparti commented on PR #10265:
URL: https://github.com/apache/cloudstack/pull/10265#issuecomment-2630312369
@Rubueno are you fine with these changes (both dialogs are in sync with
respect to the volume response).
ui/src/views/compute/CreateSnapshotWizard.vue (VM -> "Take Instance volume
Snapshot" dialog)
```
<a-form-item name="quiescevm" ref="quiescevm" v-if="isQuiesceVm">
<template #label>
<tooltip-label :title="$t('label.quiescevm')"
:tooltip="apiParams.quiescevm.description"/>
</template>
<a-switch v-model:checked="form.quiescevm"/>
</a-form-item>
<a-form-item name="asyncbackup" ref="asyncbackup"
v-if="!supportsStorageSnapshot">
<template #label>
<tooltip-label :title="$t('label.asyncbackup')"
:tooltip="apiParams.asyncbackup.description"/>
</template>
<a-switch v-model:checked="form.asyncbackup"/>
</a-form-item>
```
ui/src/views/storage/TakeSnapshot.vue (Volume -> "Take Snapshot" dialog)
```
<a-form-item :label="$t('label.asyncbackup')" name="asyncbackup"
ref="asyncbackup" v-if="!supportsStorageSnapshot">
<a-switch v-model:checked="form.asyncbackup" />
</a-form-item>
<a-form-item :label="$t('label.quiescevm')" name="quiescevm"
ref="quiescevm" v-if="quiescevm">
<a-switch v-model:checked="form.quiescevm" />
</a-form-item>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]