Skip to content

Commit

Permalink
NAS-102362 typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dkmullen committed Jul 10, 2019
1 parent c277902 commit a38ec21
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -93,7 +93,7 @@ export class VolumeRekeyFormComponent implements Formconfiguration {
return this.rest.post(this.resource_name + "/" + this.pk + "/rekey/",
{ body: JSON.stringify({passphrase: value.passphrase}) }).subscribe((restPostResp) => {
this.loader.close();
this.snackBar.open(T('Successfully re-keyed pool ' + value.name), T("Close"), {
this.snackBar.open(T('Successfully re-keyed pool ') + value.name, T("Close"), {
duration: 5000,
});
let dialogRef = this.mdDialog.open(DownloadKeyModalDialog, {disableClose:true});
Expand Down

0 comments on commit a38ec21

Please sign in to comment.