Skip to content

Commit

Permalink
stringify not strigify
Browse files Browse the repository at this point in the history
  • Loading branch information
meirish committed Apr 17, 2018
1 parent dad051c commit 32ae8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/components/download-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default Ember.Component.extend({
return `${this.get('filename')}-${new Date().toISOString()}.${this.get('extension')}`;
}),

fileLike: computed('data', 'mime', 'strigify', 'download', function() {
fileLike: computed('data', 'mime', 'stringify', 'download', function() {
let file;
let data = this.get('data');
let filename = this.get('download');
Expand Down

0 comments on commit 32ae8f0

Please sign in to comment.