diff --git a/plugins/norman/resource-instance.js b/plugins/norman/resource-instance.js index cfd0c3f167..244c294a00 100644 --- a/plugins/norman/resource-instance.js +++ b/plugins/norman/resource-instance.js @@ -548,9 +548,9 @@ export default { download() { return async() => { - const value = await this.followLink('view', { headers: { accept: 'application/yaml' } }).data; + const value = await this.followLink('view', { headers: { accept: 'application/yaml' } }); - downloadFile(`${ this.nameDisplay }.yaml`, value, 'application/yaml'); + downloadFile(`${ this.nameDisplay }.yaml`, value.data, 'application/yaml'); }; },