We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fa2c16 commit 27b4acbCopy full SHA for 27b4acb
src/components/BlockEditor/BlockEditorToolbar.js
@@ -203,7 +203,7 @@ export class BlockEditorToolbar extends React.PureComponent {
203
});
204
const downloadLink = document.createElement('a');
205
downloadLink.download = `${this.props.project.name}-${this.props.project.id}.xml`;
206
- downloadLink.innerHTML = 'Download File';
+ downloadLink.innerText = 'Download File';
207
if (window.webkitURL != null) {
208
// Chrome allows the link to be clicked without actually adding it to the DOM.
209
downloadLink.href = window.webkitURL.createObjectURL(textAsBlob);
0 commit comments