Skip to content

Commit da88b0a

Browse files
committed
minor fix in ui and nas backup provider
1 parent 3e754a1 commit da88b0a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

plugins/backup/nas/src/main/java/org/apache/cloudstack/backup/NASBackupProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ public Map<VirtualMachine, Backup.Metric> getBackupMetrics(Long zoneId, List<Vir
392392

393393
@Override
394394
public List<Backup.RestorePoint> listRestorePoints(VirtualMachine vm) {
395-
return List.of();
395+
return null;
396396
}
397397

398398
@Override

ui/public/locales/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,6 +1396,7 @@
13961396
"label.max.migrations": "Max. migrations",
13971397
"label.maxbackup": "Max. Backups",
13981398
"label.maxbackupstorage": "Max. Backup Storage (GiB)",
1399+
"label.maxbackups.to.retain": "Max. Backups to retain",
13991400
"label.maxbucket": "Max. Buckets",
14001401
"label.maxcpu": "Max. CPU cores",
14011402
"label.maxcpunumber": "Max CPU cores",

ui/src/views/compute/backup/FormSchedule.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<a-form-item :label="$t('label.keep')" name="maxbackups" ref="maxbackups">
109109
<a-tooltip
110110
placement="right"
111-
:title="$t('label.backup')">
111+
:title="$t('label.maxbackups.to.retain')">
112112
<a-input-number
113113
style="width: 100%"
114114
v-model:value="form.maxbackups"

0 commit comments

Comments
 (0)