Skip to content

Commit

Permalink
NAS-132767: Fix payload for cloud sync task
Browse files Browse the repository at this point in the history
  • Loading branch information
denysbutenko committed Dec 3, 2024
1 parent a394d87 commit c370f4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ export class CloudSyncWhatAndWhenComponent implements OnInit, OnChanges {
if (formValue[name] !== undefined && formValue[name] !== null && formValue[name] !== '') {
if (name === 'task_encryption') {
attributes[name] = formValue[name] === '' ? null : formValue[name];
} else if (name === 'bucket_input') {
attributes['bucket'] = formValue[name];
} else {
attributes[name] = formValue[name];
}
Expand Down
4 changes: 2 additions & 2 deletions src/assets/i18n/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,6 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and restart system after downloading.": "",
"Applying important system or security updates.": "",
"Apps": "Aplikacje",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
Expand Down Expand Up @@ -5221,6 +5220,7 @@
"All Disks": "Wszystkie Dyski",
"Allocate at least 256 MiB.": "Przydziel co najmniej 256 MB.",
"Allow": "Zezwól",
"Apps": "Aplikacje",
"Auth Token from alternate authentication - optional <a href=\"https://rclone.org/swift/#swift-region\" target=\"_blank\">(rclone documentation)</a>.": "Auth Token from alternate authentication - optional <a href=\"https://rclone.org/swift/#swift-region\" target=\"_blank\">(rclone documentation)</a>.",
"AuthVersion - optional - set to (1,2,3) if your auth URL has no version <a href=\"https://rclone.org/swift/#swift-region\" target=\"_blank\">(rclone documentation)</a>.": "AuthVersion - optional - set to (1,2,3) if your auth URL has no version <a href=\"https://rclone.org/swift/#swift-region\" target=\"_blank\">(rclone documentation)</a>.",
"Authentication URL for the server. This is the OS_AUTH_URL from an <a href=\"https://rclone.org/swift/#configuration-from-an-openstack-credentials-file\" target=\"_blank\">OpenStack credentials file</a>.": "Authentication URL for the server. This is the OS_AUTH_URL from an <a href=\"https://rclone.org/swift/\\#configuration-from-an-openstack-credentials-file\" target=\"_blank\">OpenStack credentials file</a>.",
Expand Down Expand Up @@ -5282,4 +5282,4 @@
"Wipe": "Wyczyść",
"Wipe this disk?": "Czy wyczyścić ten dysk?",
"[Use fewer transactions in exchange for more RAM.](https://rclone.org/docs/#fast-list) This can also speed up or slow down the transfer.": "[Use fewer transactions in exchange for more RAM.](https://rclone.org/docs/\\#fast-list) This can also speed up or slow down the transfer."
}
}

0 comments on commit c370f4e

Please sign in to comment.