diff --git a/changelog/15685.txt b/changelog/15685.txt new file mode 100644 index 0000000000000..bf9313f3f4b37 --- /dev/null +++ b/changelog/15685.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: Updated `leasId` to `leaseId` in the "Copy Credentials" section of "Generate AWS Credentials" +``` diff --git a/ui/app/models/aws-credential.js b/ui/app/models/aws-credential.js index 8ce389aa48a06..f28b96ff33d2b 100644 --- a/ui/app/models/aws-credential.js +++ b/ui/app/models/aws-credential.js @@ -69,7 +69,7 @@ export default Model.extend({ accessKey: this.accessKey, secretKey: this.secretKey, securityToken: this.securityToken, - leasId: this.leaseId, + leaseId: this.leaseId, }; const propsWithVals = Object.keys(props).reduce((ret, prop) => { if (props[prop]) {