Skip to content
Snippets Groups Projects
Commit b8905bbe authored by syuilo's avatar syuilo
Browse files

Fix: Add missing 'const'

parent 661abcfc
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@
this.onpaste = e => {
const data = e.clipboardData;
const items = data.items;
for (item of items) {
for (const item of items) {
if (item.kind == 'file') {
this.upload(item.getAsFile());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment