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.
2 parents e390dfb + 27b4acb commit 0bc8548Copy full SHA for 0bc8548
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